:root {
  /* Grayscale Palette */
  --primary: #111827;
  /* Dark text/headings */
  --secondary: #4b5563;
  /* Muted text */
  --accent: #000000;
  /* Pitch black for emphasis */

  /* Neutrals */
  --bg-base: #f3f4f6;
  /* Light gray background */
  --gray-50: #ffffff;
  --gray-900: #111827;

  /* Fluid typography using clamp() */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  --text-3xl: clamp(2.5rem, 2rem + 2.5vw, 4rem);
  --text-4xl: clamp(3rem, 2.5rem + 4vw, 5rem);

  /* Spacing */
  --space-4: 1rem;
  --space-8: 2rem;
  --space-12: 3rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--gray-900);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Gradient Mesh Background (Greyscale Trend) */
.gradient-mesh {
  background:
    radial-gradient(at 20% 30%, rgba(229, 231, 235, 0.8) 0px, transparent 60%),
    radial-gradient(at 80% 70%, rgba(209, 213, 219, 0.6) 0px, transparent 60%),
    radial-gradient(at 50% 50%, rgba(243, 244, 246, 0.9) 0px, transparent 60%),
    var(--bg-base);
  background-attachment: fixed;
}

/* Base Layout */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  min-height: 100vh;
}

/* Glassmorphism Card (Stunning White/Light Gray) */
.glass {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: var(--space-8);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 600px;
  text-align: center;
}

/* Floating Animation */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

.floating {
  animation: float 5s ease-in-out infinite;
}

.logo {
  max-width: 180px;
  height: auto;
  margin-bottom: var(--space-8);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.06));
}

/* Text Styling */
.gradient-text {
  /* Sleek dark gradient for the greyscale theme */
  background: linear-gradient(135deg, var(--primary), #6b7280);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.hero-title {
  font-size: var(--text-4xl);
  line-height: 1.1;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--secondary);
  margin-bottom: var(--space-12);
  font-weight: 400;
}

.contact-info {
  background: rgba(255, 255, 255, 0.8);
  padding: var(--space-4) var(--space-8);
  border-radius: 100px;
  /* Pill shape */
  display: inline-block;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.contact-info p {
  font-size: var(--text-xs);
  color: #6b7280;
  margin-bottom: 0.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.email-link {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.email-link:hover {
  color: var(--accent);
  transform: translateY(-2px);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .hero {
    padding: var(--space-8);
  }

  .glass {
    padding: var(--space-12);
    border-radius: 32px;
  }

  .logo {
    max-width: 200px;
  }
}