@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --obsidian: #050505;
  --electric-blue: #0070F3;
  --glass-blur: blur(12px);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --executive-margin: 120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--obsidian);
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 {
  /* Increased letter spacing for Sovereign enterprise feel */
  letter-spacing: 0.06em;
  font-weight: 600;
}

.executive-section {
  min-height: 100vh;
  padding: 0 var(--executive-margin);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  position: absolute;
  top: 40px; 
  left: var(--executive-margin);
  display: flex;
  flex-direction: column; 
  align-items: center;
  gap: 0px;
  z-index: 100;
}

.brand-text {
  font-size: 1.1rem; 
  font-weight: 700;
  letter-spacing: 0em;
  color: white;
  margin-left: 0;
  margin-top: -10px; 
}

.breathing-logo {
  height: 120px; 
  width: auto;
  filter: invert(1) hue-rotate(180deg) brightness(1.6) contrast(1.3); 
  mix-blend-mode: screen; 
  clip-path: inset(0 0 25% 0); 
  margin-bottom: -20px; 
  animation: breathe 4s ease-in-out infinite alternate;
  transform-origin: center 40%;
}

@keyframes breathe {
  0% { transform: scale(1); }
  100% { transform: scale(1.04); }
}

.watermark {
  position: fixed;
  bottom: 40px;
  right: var(--executive-margin);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.15);
  font-weight: 600;
  z-index: 100;
  pointer-events: none;
}
