:root {
  --azure: #38bdf8;
  --slate-900: #0f172a;
  --slate-400: #94a3b8;
  --gold-subtle: #e2e8f0;
  --background: #0f172a;
  --text: #f1f5f9;
  --neon-blue: #38bdf8;
  --neon-green: #10b981;
  --neon-amber: #fbbf24;
  --neon-emerald: #10b981;
  --neon-cyan: #0ea5e9;
  --neon-rose: #f43f5e;
}
body {
  background-color: var(--background);
  color: var(--text);
  font-family: 'Inter', 'Roboto', sans-serif; /* Use a cleaner font for 2026 */
}

.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  width: 100%;
}

.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: marquee var(--marquee-speed) linear infinite;
  animation-play-state: running;
}

.marquee-container.paused .marquee-content {
  animation-play-state: paused;
}

@keyframes marquee {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-100%, 0); }
}

.scroll-section {
  display: block;
  min-height: 100vh;
  width: 100%;
  padding: 40px;
  box-sizing: border-box;
}

.product-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid;
  height:90%;
}

.product-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.product-block h3 {
  margin-top: 0;
}

h1, h2, h3 {
  font-weight: 700;
}


.scroll-instruction {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: var(--text);
  padding: 10px 20px;
  border-radius: 20px;
  z-index: 1000;
}

.welcome-hero {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #050505;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}

.hero-logo {
  width: 100%;
  max-width: 650px;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 30px rgba(56, 189, 248, 0.15));
}

.sovereign-title {
  color: #38bdf8;
  font-size: 1.4rem;
  letter-spacing: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}
.divider {
  width: 100px;         /* Slightly wider for a more solid 'Sovereign' feel */
  height: 2px;
  background: #38bdf8;
  margin: 2rem auto;    /* Changed '0' to 'auto' to force horizontal centering */
  opacity: 0.6;         /* Increased opacity for better visibility */
  display: block;       /* Ensures it behaves as a centered block */
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.3); /* Adds a subtle glow so it doesn't look cut off */
}

/* Mission Statement Alignment */
.mission-text {
  color: #94a3b8;
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 300;
  text-align: center;
  max-width: 800px;
  text-wrap: balance;   /* 2026 standard for beautiful wrapping */
  margin: 0 auto 3rem auto; /* Ensures the block itself is centered */
}

/* Coming Soon Centering Fix */
.coming-soon {
  color: #f8fafc;
  font-size: 0.9rem;
  letter-spacing: 0.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center; /* This is the key for horizontal centering */
  width: 100%;             /* Occupy full width to allow centering */
  opacity: 0.8;
  margin: 0 auto;
}

.pulse-dot {
  height: 8px;
  width: 8px;
  background-color: #38bdf8;
  border-radius: 50%;
  margin-right: 15px;      /* Spacing between dot and text */
  box-shadow: 0 0 10px #38bdf8;
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  flex-shrink: 0;          /* Prevents the dot from being squished */
}

@keyframes pulse-ring {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .3; transform: scale(1.2); }
}

/* Use Cases Grid Styling */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.use-case-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(244, 63, 94, 0.3);
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
  text-align: center;
}

.use-case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(244, 63, 94, 0.2);
  border-color: var(--neon-rose);
}

.use-case-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 63, 94, 0.08);
  border-radius: 8px;
  padding: 10px;
}

.use-case-icon svg {
  width: 100%;
  height: 100%;
}

.use-case-card h4 {
  margin: 15px 0 10px 0;
  font-size: 1.1rem;
  color: var(--neon-rose);
}

.use-case-card p {
  color: var(--text);
  opacity: 0.85;
  margin: 0;
  font-size: 0.95rem;
}

/* Email link hover effect */
.email-link:hover {
  opacity: 0.8;
  text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}