/* ==============================================================================
   TEPAT — LUXURY EXECUTIVE "TERANG TAPI SMOOTH" LANDING PAGE STYLESHEET
   Inspired by CanvasUI (canvasui.dev/components) & ThreeUI (threeui.com/landing-pages)
   Aesthetic: Luminous Airy Mint, Pearlescent Ivory, Matte Tosca & Blush Rose Accents
   Mobile First Responsive UI System
   PT TEKNOLOGI ENERGI UTAMA (PT TEU)
   ============================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* "Terang tapi Smooth" Soft Pearlescent Palette */
  --bg-space: #F6FAF9;
  --bg-deep: #EDF5F4;
  --bg-surface: #FFFFFF;
  --bg-surface-trans: rgba(255, 255, 255, 0.88);
  
  /* Luminous Tosca / Mint / Jade Accents */
  --tosca-vibrant: #0D9488;
  --tosca-primary: #0F766E;
  --tosca-dark: #115E59;
  --tosca-glow: rgba(13, 148, 136, 0.22);
  --tosca-light: #00A389;
  --mint-soft: #CCFBF1;
  --mint-pill: #E6FFFA;

  /* Executive Blush Rose & Coral Accents */
  --rose-blush: #E11D48;
  --rose-soft: #F43F5E;
  --rose-glow: rgba(225, 29, 72, 0.18);
  --orchid-pink: #DB2777;
  --orchid-glow: rgba(219, 39, 119, 0.16);
  --gold-warm: #D97706;
  --gold-amber: #B45309;

  /* Frosted Glass & Delicate Hairline Borders */
  --glass-bg: rgba(255, 255, 255, 0.82);
  --glass-bg-hover: rgba(255, 255, 255, 0.96);
  --glass-border-tosca: rgba(13, 148, 136, 0.22);
  --glass-border-rose: rgba(225, 29, 72, 0.22);
  --glass-border-subtle: rgba(15, 118, 110, 0.12);

  /* High Contrast Executive Slate Typography */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --text-white: #0F172A;
  --text-pure: #1E293B;
  --text-blush: #9F1239;
  --text-muted: #64748B;
  --text-dim: #94A3B8;

  /* Soft Luxury Shadows (Airy, Zero Muddy Grayscale) */
  --shadow-matte: 0 20px 48px rgba(10, 40, 45, 0.07), 0 2px 8px rgba(13, 148, 136, 0.04);
  --shadow-glow-tosca: 0 8px 32px rgba(13, 148, 136, 0.22);
  --shadow-glow-rose: 0 8px 32px rgba(225, 29, 72, 0.2);
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-space);
  background-image: 
    radial-gradient(circle at 10% 8%, rgba(204, 251, 241, 0.65) 0%, transparent 45%),
    radial-gradient(circle at 90% 25%, rgba(255, 228, 230, 0.45) 0%, transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(224, 242, 254, 0.5) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--text-pure);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-space);
}
::-webkit-scrollbar-thumb {
  background: rgba(13, 148, 136, 0.3);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--tosca-primary);
}

/* ==============================================================================
   INTERACTIVE CANVAS (CANVASUI PETAL / FLORAL FLOW SYSTEM)
   ============================================================================== */
#hero-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: auto;
}

.aurora-bg-container {
  width: 100vw;
  height: 100vh;
  contain: paint;
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.aurora-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  will-change: transform;
  animation: orbFloat 24s infinite alternate ease-in-out;
}

.aurora-1 {
  width: 580px;
  height: 580px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.28) 0%, rgba(204, 251, 241, 0.14) 50%, transparent 75%);
}

.aurora-2 {
  width: 620px;
  height: 620px;
  bottom: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(253, 164, 175, 0.24) 0%, rgba(255, 228, 230, 0.12) 50%, transparent 75%);
  animation-delay: -8s;
}

.aurora-3 {
  width: 540px;
  height: 540px;
  top: 40%;
  left: 25%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, rgba(224, 242, 254, 0.1) 50%, transparent 75%);
  animation-delay: -16s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.08); }
  100% { transform: translate(-30px, 50px) scale(0.95); }
}

.ambient-grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  background-image: 
    linear-gradient(rgba(13, 148, 136, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 148, 136, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

/* ==============================================================================
   PAGE WRAPPER & CONTAINER
   ============================================================================== */
.page-wrapper {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  max-width: 100vw;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==============================================================================
   NAVIGATION BAR (AIRY FROSTED GLASS)
   ============================================================================== */
.navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 24px;
  transition: all 0.3s ease;
}

.navbar {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: 9999px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(10, 40, 45, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar:hover {
  border-color: rgba(13, 148, 136, 0.4);
  box-shadow: 0 12px 36px rgba(10, 40, 45, 0.08);
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
}

.contract-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(240, 253, 250, 0.95), rgba(204, 251, 241, 0.85));
  border: 1px solid rgba(13, 148, 136, 0.32);
  padding: 5px 14px;
  border-radius: 9999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.pulse-dot-tosca {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tosca-vibrant);
  box-shadow: 0 0 8px var(--tosca-vibrant);
  animation: pulseDot 2.2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.65; }
}

.contract-name {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #0F766E;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
  padding: 6px 0;
}

.nav-link:hover {
  color: var(--tosca-vibrant);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--tosca-vibrant), var(--rose-soft));
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ==============================================================================
   BUTTONS (MATTE TOSCA & GENTLE BLUSH)
   ============================================================================== */
.btn-primary-matte-tosca {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0D9488 0%, #0F766E 100%);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px 22px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.28);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary-matte-tosca:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(13, 148, 136, 0.38);
  color: #FFFFFF;
}

/* ==============================================================================
   HERO SECTION (SMOOTH & LUMINOUS)
   ============================================================================== */
.hero-section {
  padding: 60px 0 80px 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

/* Hero Left Content */
.hero-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(204, 251, 241, 0.65);
  border: 1px solid rgba(13, 148, 136, 0.32);
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  color: #0F766E;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.08);
}

.hero-title {
  font-size: clamp(32px, 3.8vw, 50px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: #0F172A;
}

.gradient-text-tosca {
  background: linear-gradient(135deg, #0F766E 15%, #0D9488 60%, #14B8A6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-rose {
  background: linear-gradient(135deg, #BE123C 0%, #E11D48 50%, #F43F5E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 34px;
  max-width: 580px;
}

.hero-lead strong {
  color: #0F172A;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-hero-lg {
  padding: 14px 30px;
  font-size: 14px;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(13, 148, 136, 0.28);
  color: #0F766E;
  font-size: 13.5px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(10, 40, 45, 0.04);
  transition: all 0.25s ease;
}

.btn-hero-secondary:hover {
  background: #FFFFFF;
  border-color: #0D9488;
  color: #0D9488;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(13, 148, 136, 0.15);
}

/* Highlights Strip */
.hero-highlights-strip {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(13, 148, 136, 0.15);
}

.h-stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.h-stat-num {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.h-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ==============================================================================
   HERO RIGHT VISUAL (FROSTED GLASS SPOTLIGHT CARD)
   ============================================================================== */
.hero-visual-card {
  position: relative;
  width: 100%;
  perspective: 1200px;
  padding: 24px 18px 28px;
}

.holographic-center-card {
  position: relative;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.94) 0%, rgba(240, 253, 250, 0.9) 100%);
  border: 1px solid rgba(13, 148, 136, 0.24);
  border-radius: 26px;
  padding: 34px 30px 48px;
  box-shadow: 0 30px 70px rgba(10, 40, 45, 0.08), 0 0 35px rgba(45, 212, 191, 0.1), inset 0 1px 0 #FFFFFF;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.holographic-center-card:hover {
  transform: rotateY(-2deg) rotateX(3deg) translateY(-4px);
  box-shadow: 0 36px 85px rgba(10, 40, 45, 0.12), 0 0 45px rgba(45, 212, 191, 0.18);
  border-color: rgba(13, 148, 136, 0.4);
}

/* Card Corporate Branding Header */
.card-corp-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(13, 148, 136, 0.14);
}

.card-corp-logo {
  height: 26px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

/* Executive Leader Portrait Spotlight */
.executive-avatar-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.avatar-wrapper {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(13, 148, 136, 0.35);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.18);
  flex-shrink: 0;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.avatar-info h4 {
  font-size: 17px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 4px;
}

.avatar-info p {
  font-size: 12.5px;
  color: #64748B;
  margin-bottom: 8px;
}

.level-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 11px;
  background: rgba(204, 251, 241, 0.75);
  border: 1px solid rgba(13, 148, 136, 0.3);
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  color: #0F766E;
  letter-spacing: 0.04em;
}

/* Mini Radar / Competency Indicator */
.radar-preview-box {
  background: rgba(248, 250, 252, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 18px;
}

.radar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 12px;
}

.radar-row:last-child {
  margin-bottom: 0;
}

.radar-label {
  color: #334155;
  font-weight: 600;
  width: 175px;
  flex-shrink: 0;
}

.radar-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(203, 213, 225, 0.5);
  border-radius: 9999px;
  margin: 0 12px;
  overflow: hidden;
}

.radar-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #0D9488 0%, #14B8A6 100%);
  border-radius: 9999px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.radar-val {
  font-weight: 700;
  color: #0F172A;
  min-width: 32px;
  text-align: right;
  font-size: 12px;
}

/* Floating Badges */
.float-badge-1, .float-badge-2 {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(13, 148, 136, 0.22);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(10, 40, 45, 0.09);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 10;
}

.float-badge-1 {
  top: -14px;
  right: -12px;
}

.float-badge-2 {
  bottom: -16px;
  left: 20px;
}

.fb-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fb-icon-tosca {
  background: rgba(204, 251, 241, 0.8);
  border: 1px solid rgba(13, 148, 136, 0.3);
  color: #0F766E;
}

.fb-icon-rose {
  background: rgba(255, 228, 230, 0.85);
  border: 1px solid rgba(225, 29, 72, 0.28);
  color: #BE123C;
}

.fb-text strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #0F172A;
}

.fb-text span {
  display: block;
  font-size: 10.5px;
  color: #64748B;
}

/* ==============================================================================
   BENTO GRID SHOWCASE (SMOOTH LIGHT PEARL)
   ============================================================================== */
.bento-section {
  padding: 90px 0 100px 0;
  position: relative;
}

.section-header-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px auto;
}

.section-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 15px;
  background: rgba(204, 251, 241, 0.65);
  border: 1px solid rgba(13, 148, 136, 0.3);
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  color: #0F766E;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: #0F172A;
}

.section-subtitle {
  font-size: 15px;
  color: #64748B;
  line-height: 1.68;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.bento-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(13, 148, 136, 0.18);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 48px rgba(10, 40, 45, 0.05), inset 0 1px 0 #FFFFFF;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(13, 148, 136, 0.38);
  transform: translateY(-4px);
  box-shadow: 0 28px 64px rgba(10, 40, 45, 0.09), 0 0 35px rgba(45, 212, 191, 0.15);
}

.bento-col-8 { grid-column: span 8; }
.bento-col-4 { grid-column: span 4; }
.bento-col-6 { grid-column: span 6; }

.bento-badge {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 11px;
  border-radius: 9999px;
  margin-bottom: 16px;
}

.b-badge-tosca {
  background: rgba(204, 251, 241, 0.7);
  border: 1px solid rgba(13, 148, 136, 0.28);
  color: #0F766E;
}

.b-badge-rose {
  background: rgba(255, 228, 230, 0.8);
  border: 1px solid rgba(225, 29, 72, 0.25);
  color: #BE123C;
}

.bento-title {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
  color: #0F172A;
}

.bento-desc {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 22px;
}

/* 7 Factors Compact Grid */
.factors-compact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.f-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(248, 250, 252, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 12px;
  font-size: 12px;
  color: #334155;
  font-weight: 600;
  transition: all 0.2s ease;
}

.f-item.highlight {
  border-color: rgba(13, 148, 136, 0.32);
  background: rgba(204, 251, 241, 0.5);
  color: #0F766E;
}

.f-item:hover {
  background: #FFFFFF;
  border-color: #0D9488;
  transform: translateY(-1px);
}

.f-name {
  color: inherit;
}

.f-weight {
  font-weight: 800;
  color: #0D9488;
  margin-left: 8px;
}

/* 9-Box Mini Grid */
.mini-9box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mini-box-cell {
  background: rgba(248, 250, 252, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mini-box-cell:hover {
  background: #FFFFFF;
  border-color: #0D9488;
  transform: scale(1.02);
}

.mini-box-cell.ready1 {
  background: linear-gradient(135deg, rgba(204, 251, 241, 0.95), rgba(153, 246, 228, 0.7));
  border-color: #0D9488;
  color: #0F766E;
}

.mb-name {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 2px;
}

.mb-count {
  font-size: 10px;
  color: #64748B;
}

.mini-9box-desc-card {
  margin-top: 14px;
  font-size: 12px;
  color: #1E293B;
  line-height: 1.55;
  background: #F0FDF4;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(13, 148, 136, 0.22);
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.05);
  transition: all 0.3s ease;
}

.mini-9box-desc-card strong {
  color: #0D9488;
}

/* AI Autonomous CV Parsing Stream */
.ai-stream-box {
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  padding: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  line-height: 1.8;
  color: #334155;
}

.ai-stream-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0D9488;
}

/* Common Context Ladder */
.context-ladder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.ladder-band-col {
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
  transition: all 0.2s ease;
}

.ladder-band-col:hover {
  background: #FFFFFF;
  border-color: #0D9488;
  transform: translateY(-2px);
}

.ladder-band-col.band-d {
  background: rgba(255, 241, 242, 0.75);
  border-color: rgba(225, 29, 72, 0.32);
}

.band-letter {
  font-size: 11px;
  font-weight: 800;
  color: #0F766E;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.ladder-band-col.band-d .band-letter {
  color: #BE123C;
}

.band-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 6px;
}

.band-desc {
  font-size: 11px;
  color: #64748B;
  line-height: 1.5;
}

/* ==============================================================================
   LEADERSHIP SHOWCASE
   ============================================================================== */
.leadership-section {
  padding: 60px 0 90px 0;
  position: relative;
}

.leadership-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.leader-card {
  display: flex;
  gap: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(13, 148, 136, 0.18);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 16px 40px rgba(10, 40, 45, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.leader-card:hover {
  background: #FFFFFF;
  border-color: rgba(13, 148, 136, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(10, 40, 45, 0.09);
}

.leader-photo-wrap {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(13, 148, 136, 0.3);
  flex-shrink: 0;
}

.leader-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.leader-details h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 4px;
}

.leader-role {
  font-size: 12.5px;
  color: #0D9488;
  font-weight: 700;
  margin-bottom: 12px;
}

.leader-quote {
  font-size: 13px;
  font-style: italic;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 16px;
  border-left: 2px solid #E11D48;
  padding-left: 12px;
}

.leader-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ltag {
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  background: rgba(241, 245, 249, 0.85);
  border: 1px solid rgba(203, 213, 225, 0.7);
  border-radius: 9999px;
  color: #0F766E;
}

/* ==============================================================================
   METRICS GLASS BAR
   ============================================================================== */
.metrics-section {
  padding: 40px 0 80px 0;
  position: relative;
}

.metrics-glass-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: 26px;
  padding: 36px 24px;
  box-shadow: 0 20px 48px rgba(10, 40, 45, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.m-card-item {
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.m-card-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(13, 148, 136, 0.15);
}

.m-card-item:last-child::after {
  display: none;
}

.m-stat-num {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #0F766E 0%, #0D9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.m-stat-label {
  font-size: 13.5px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 4px;
}

.m-stat-sub {
  font-size: 11px;
  color: #64748B;
}

/* ==============================================================================
   FINALE CTA BANNER
   ============================================================================== */
.finale-cta-section {
  padding: 40px 0 90px 0;
  position: relative;
}

.finale-cta-card {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 253, 250, 0.9) 100%);
  border: 1px solid rgba(13, 148, 136, 0.28);
  border-radius: 30px;
  padding: 56px 36px;
  box-shadow: 0 30px 80px rgba(10, 40, 45, 0.08);
  position: relative;
  overflow: hidden;
}

.cta-heading {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #0F172A;
  margin-bottom: 14px;
}

.cta-desc {
  font-size: 15px;
  color: #475569;
  max-width: 620px;
  margin: 0 auto 36px auto;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==============================================================================
   FOOTER (LIGHT MINIMALIST)
   ============================================================================== */
.site-footer {
  border-top: 1px solid rgba(13, 148, 136, 0.16);
  padding: 44px 0 28px 0;
  background: #EDF5F4;
  position: relative;
  z-index: 10;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.footer-portal-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #0F766E;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 148, 136, 0.25);
  padding: 6px 14px;
  border-radius: 9999px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.status-indicator-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tosca-vibrant);
  box-shadow: 0 0 8px var(--tosca-vibrant);
  animation: pulseDot 2.2s infinite ease-in-out;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(13, 148, 136, 0.12);
  font-size: 11.5px;
  color: #64748B;
  flex-wrap: wrap;
  gap: 14px;
}

/* ==============================================================================
   RESPONSIVE MEDIA QUERIES (MOBILE OPTIMIZED)
   ============================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    text-align: center;
  }
  .hero-lead {
    margin: 0 auto 32px auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-highlights-strip {
    justify-content: center;
  }
  .bento-col-8, .bento-col-4, .bento-col-6 {
    grid-column: span 12;
  }
  .leadership-showcase-grid {
    grid-template-columns: 1fr;
  }
  .metrics-glass-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .m-card-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  html, body, .page-wrapper {
    overflow-x: hidden !important;
    max-width: 100vw;
  }

  /* Compact Mobile Navbar */
  .navbar-wrapper {
    padding: 12px 14px;
  }
  .navbar {
    padding: 10px 14px;
  }
  .brand-group {
    gap: 8px;
  }
  .brand-logo {
    height: 30px;
  }
  .contract-badge-pill {
    display: none; /* Hide wide pill on mobile to prevent navbar blowout */
  }
  .nav-menu {
    display: none;
  }
  .nav-actions .btn-primary-matte-tosca {
    padding: 8px 14px;
    font-size: 11.5px;
    gap: 5px;
  }

  /* Mobile Hero */
  .hero-section {
    padding: 30px 0 45px 0;
  }
  .hero-grid {
    gap: 32px;
  }
  .hero-title br {
    display: none;
  }
  .hero-title {
    font-size: clamp(26px, 7.2vw, 36px);
    line-height: 1.22;
  }
  .hero-lead {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 28px;
  }
  .btn-hero-lg, .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 13px;
  }
  .hero-highlights-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 18px;
  }
  .h-stat-num {
    font-size: 21px;
  }
  .h-stat-label {
    font-size: 9.5px;
    line-height: 1.3;
  }

  /* Mobile Hero Spotlight Card */
  .hero-visual-card {
    padding: 16px 2px 42px;
  }
  .holographic-center-card {
    padding: 22px 16px 48px;
    border-radius: 20px;
    transform: none !important;
  }
  .holographic-center-card:hover {
    transform: none !important;
  }
  .card-corp-header {
    padding-bottom: 12px;
    margin-bottom: 14px;
  }
  .card-corp-logo {
    height: 24px;
  }
  .executive-avatar-badge {
    gap: 12px;
    margin-bottom: 16px;
    text-align: left;
  }
  .avatar-wrapper {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }
  .avatar-info h4 {
    font-size: 15px;
  }
  .avatar-info p {
    font-size: 11.5px;
  }
  .level-tag-pill {
    font-size: 10px;
    padding: 3px 8px;
  }

  /* Mobile Grid-Area Competency Progress Bars (No Text Squeezing) */
  .radar-row {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "label val"
      "track track";
    row-gap: 5px;
    margin-bottom: 12px;
  }
  .radar-label {
    grid-area: label;
    font-size: 11.5px;
    width: auto;
  }
  .radar-val {
    grid-area: val;
    font-size: 11.5px;
    font-weight: 700;
  }
  .radar-bar-track {
    grid-area: track;
    width: 100%;
    margin: 0;
    height: 6px;
  }

  /* Mobile Floating Badges Positioning */
  .float-badge-1 {
    top: -12px;
    right: 4px !important;
    transform: scale(0.82);
    transform-origin: top right;
  }
  .float-badge-2 {
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%) scale(0.9);
    width: calc(100% - 24px);
    max-width: 320px;
  }

  /* Bento Grid Mobile */
  .bento-section {
    padding: 50px 0 60px 0;
  }
  .section-header-center {
    margin-bottom: 34px;
  }
  .bento-card {
    padding: 22px 16px;
    border-radius: 20px;
  }
  .bento-title {
    font-size: 18px;
  }
  .bento-desc {
    font-size: 13px;
  }

  /* 7 Factors 1 Column on Mobile */
  .factors-compact-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .f-item {
    font-size: 11.5px;
    padding: 9px 12px;
  }
  .f-item[style*="grid-column"] {
    grid-column: span 1 !important;
  }

  /* Context Ladder 2x2 on Mobile */
  .context-ladder-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .ladder-band-col {
    padding: 12px 8px;
  }
  .band-title {
    font-size: 12.5px;
  }
  .band-desc {
    font-size: 10.5px;
  }

  /* Leadership Cards Mobile */
  .leadership-section {
    padding: 40px 0 60px 0;
  }
  .leader-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
  }
  .leader-quote {
    border-left: none;
    border-top: 2px solid #E11D48;
    padding-left: 0;
    padding-top: 8px;
  }
  .leader-tags {
    justify-content: center;
  }

  /* Metrics 2x2 Grid on Mobile */
  .metrics-section {
    padding: 30px 0 60px 0;
  }
  .metrics-glass-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 24px 14px;
    border-radius: 20px;
  }
  .m-card-item::after {
    display: none !important;
  }
  .m-stat-num {
    font-size: 28px;
  }
  .m-stat-label {
    font-size: 12px;
  }

  /* Finale CTA Banner Mobile */
  .finale-cta-section {
    padding: 20px 0 60px 0;
  }
  .finale-cta-card {
    padding: 36px 18px;
    border-radius: 22px;
  }
  .cta-heading {
    font-size: 22px;
  }
  .cta-desc {
    font-size: 13.5px;
    margin-bottom: 26px;
  }
  .cta-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .cta-actions a {
    width: 100%;
    justify-content: center;
  }

  /* Footer Mobile */
  .site-footer {
    padding: 32px 0 20px 0;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}


/* Responsive Image Safety */
img {
  max-width: 100%;
  height: auto;
}

.leader-avatar-box, .leader-photo-wrap {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(13, 148, 136, 0.3);
  flex-shrink: 0;
}

.leader-avatar-box img, .leader-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.l-tag, .ltag {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  background: rgba(241, 245, 249, 0.85);
  border: 1px solid rgba(203, 213, 225, 0.7);
  border-radius: 9999px;
  color: #0F766E;
  display: inline-block;
}

.m-num, .m-stat-num {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #0F766E 0%, #0D9488 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.m-label, .m-stat-label {
  font-size: 13.5px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 4px;
}

.m-sub, .m-stat-sub {
  font-size: 11px;
  color: #64748B;
}

/* Global Enterprise SVG Icon Consistency */
.btn-primary-matte-tosca svg,
.btn-hero-secondary svg,
.hero-tag-badge svg,
.section-pill-tag svg,
.level-tag-pill svg,
.mini-box-cell svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.hero-tag-badge svg {
  color: #0F766E;
}
