:root {
  --bg-start: #02040B;
  --bg-mid: #060A18;
  --bg-end: #001822;
  --text: #FFFFFF;
  --muted: #96AFB2;
  --teal: #00BCD4;
  --orange: #FF7A00;
  --green: #7EC850;
  --shadow-teal: 0 0 12px rgba(0,188,212,0.65);
  --shadow-orange: 0 0 10px rgba(255,122,0,0.6);
  --shadow-green: 0 0 10px rgba(126,200,80,0.65);
  --radius: 12px;
}

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

body {
  background: linear-gradient(135deg, var(--bg-start) 0%, var(--bg-mid) 50%, var(--bg-end) 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.6;
  padding: 0;
  min-height: 100vh;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header & Navigation */
header {
  padding: 20px 0;
  backdrop-filter: blur(8px);
  background: linear-gradient(180deg, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
  border-bottom: 1px solid rgba(0,188,212,0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: var(--teal);
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  text-shadow: var(--shadow-teal);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  color: var(--teal);
  text-shadow: var(--shadow-teal);
}

/* Hero Section with Flexbox */
.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: radial-gradient(ellipse at center, rgba(0,188,212,0.08) 0%, transparent 70%);
}

.hero-container {
  width: 100%;
}

.hero-content-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.hero-logo-container {
  flex: 0 0 auto;
}

.main-logo-glow {
  width: 320px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0,188,212,0.6), 0 0 80px rgba(0,188,212,0.3);
  animation: logoGlow 4s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.main-logo-glow:hover {
  transform: scale(1.05);
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 25px var(--teal)) brightness(1);
  }
  50% {
    filter: drop-shadow(0 0 45px var(--teal)) brightness(1.1);
  }
}

.hero-text-container {
  flex: 1;
  min-width: 300px;
}

.hero-text-container h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
}

/* Bio Section with Card Layout */
.bio-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,188,212,0.05) 50%, transparent 100%);
}

.bio-container h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--teal);
  text-shadow: var(--shadow-teal);
}

.bio-card {
  display: flex;
  align-items: center;
  gap: 50px;
  background: linear-gradient(135deg, rgba(6,10,24,0.8) 0%, rgba(0,24,34,0.6) 100%);
  border-radius: 20px;
  padding: 50px;
  border: 1px solid rgba(0,188,212,0.2);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px rgba(0,188,212,0.15);
  backdrop-filter: blur(10px);
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.bio-image {
  flex: 0 0 auto;
}

.profile-pic {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--teal);
  box-shadow: 0 0 30px rgba(0,188,212,0.5), 0 0 60px rgba(0,188,212,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-pic:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0,188,212,0.7), 0 0 80px rgba(0,188,212,0.3);
}

.bio-content {
  flex: 1;
  min-width: 300px;
}

.founder-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 20px;
  text-shadow: var(--shadow-orange);
}

.bio-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}

.bio-content p:last-child {
  margin-bottom: 0;
}

/* Process Section */
.process-section {
  padding: 100px 0;
  background: transparent;
}

.process-section h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--green);
  text-shadow: var(--shadow-green);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.process-card {
  background: linear-gradient(135deg, rgba(6,10,24,0.7) 0%, rgba(0,24,34,0.5) 100%);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(126,200,80,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(126,200,80,0.3);
  border-color: rgba(126,200,80,0.4);
}

.process-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--green);
}

.process-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

/* Offers Section */
.offers-section {
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255,122,0,0.05) 50%, transparent 100%);
}

.offers-section h2 {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--orange);
  text-shadow: var(--shadow-orange);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.offer-card {
  background: linear-gradient(135deg, rgba(6,10,24,0.7) 0%, rgba(0,24,34,0.5) 100%);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(255,122,0,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 48px rgba(255,122,0,0.3);
  border-color: rgba(255,122,0,0.4);
}

.offer-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--orange);
}

.offer-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

/* Buttons */
.btn-primary {
  display: inline-block;
  padding: 16px 32px;
  background: var(--teal);
  color: #001417;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-teal);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0,188,212,1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .hero-text-container h1 {
    font-size: 40px;
  }
  
  .main-logo-glow {
    width: 240px;
  }
  
  .bio-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }
  
  .profile-pic {
    width: 220px;
    height: 220px;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .nav-menu {
    gap: 15px;
    font-size: 14px;
  }
}