:root {
  --bg-color: #030712;      /* Ultra dark slate */
  --primary: #6366f1;       /* Indigo */
  --secondary: #00d4ff;     /* Cyber Cyan */
  --text: #f3f4f6;          /* Off-white */
  --text-muted: #9ca3af;    /* Muted gray */
  --success: #10b981;       /* Verification green */
  --border: rgba(99, 102, 241, 0.15);
  --border-hover: rgba(0, 212, 255, 0.4);
  --glow-primary: rgba(99, 102, 241, 0.25);
  --glow-secondary: rgba(0, 212, 255, 0.2);
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden;
  position: relative;
  /* Soft background ambient glows */
  background-image: 
    radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.12) 0px, transparent 40%),
    radial-gradient(at 100% 100%, rgba(0, 212, 255, 0.1) 0px, transparent 40%);
}

/* Subtle animated grid background */
body::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
  pointer-events: none;
}

/* Navigation Header */
header {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: default;
}

.logo-svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px var(--glow-secondary));
}

.brand-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #fff;
}

.status-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--secondary);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.15);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* Hero Center Layout */
.hero-stage {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.headline-gradient {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 40%, var(--secondary) 85%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 600px) {
  .headline-gradient {
    font-size: 38px;
  }
}

.subheadline {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* Morphing Vector Graphic */
.graphic-wrapper {
  margin-bottom: 40px;
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glow-ring {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px dashed var(--secondary);
  position: absolute;
  animation: rotate-ring 12s linear infinite;
  opacity: 0.7;
}

.glow-ring-inner {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  position: absolute;
  animation: rotate-ring-reverse 8s linear infinite;
  opacity: 0.5;
}

@keyframes rotate-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotate-ring-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* Minimal inquiry input container */
.inquiry-form {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  border: 1px solid var(--border);
  background: rgba(10, 15, 30, 0.6);
  padding: 6px;
  border-radius: 30px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.form-row:focus-within {
  border-color: var(--secondary);
  box-shadow: 0 0 15px var(--glow-secondary);
}

.form-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  outline: none;
  font-family: 'Inter', sans-serif;
}

.form-input::placeholder {
  color: #52525b;
}

.btn-submit {
  background: #fff;
  color: #000;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 24px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-submit:hover {
  background: var(--secondary);
  color: #000;
  box-shadow: 0 0 12px var(--secondary);
}

.form-feedback {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--success);
  margin-top: 15px;
  display: none;
}

/* Footer styling */
footer {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 12px;
  color: var(--text-muted);
  z-index: 10;
}

.footer-email {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-email:hover {
  color: var(--secondary);
}

@media (max-width: 600px) {
  footer {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
