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

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI",
    sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, #111111 0%, #000000 100%);
  z-index: -1;
}

.logo {
  text-align: center;
  padding: 3rem 0 2rem 0;
}

.logo-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.9;
}

.sikand {
  color: #6b7280;
}

.media {
  color: #10b981;
}

/* Hero Section */
.hero-section {
  padding: 3rem 3rem 2rem 3rem;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero-headline {
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: left;
}

.hero-headline .highlight {
  color: #10b981;
  font-weight: 700;
  text-shadow: 0 4px 16px rgba(16, 185, 129, 0.2),
    0 0 32px rgba(16, 185, 129, 0.1);
}

.handwritten-edit {
  font-family: "Brush Script MT", "Lucida Handwriting", cursive;
  color: #10b981;
  font-weight: normal;
  font-style: italic;
  position: relative;
  transform: rotate(-1.5deg);
  display: inline-block;
  margin: 0 0.3em;
  font-size: 0.9em;
  top: -0.1em;
}

/* Main Card */
.main-card {
  background: linear-gradient(135deg, #111827 0%, #0f1419 100%);
  border: 1px solid rgba(55, 65, 81, 0.4);
  border-radius: 32px;
  margin: 0 2rem 3rem 2rem;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 60px rgba(16, 185, 129, 0.15),
    0 0 120px rgba(16, 185, 129, 0.1);
  animation: greenGlow 4s ease-in-out infinite alternate;
}

@keyframes greenGlow {
  0% {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4),
      0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 40px rgba(16, 185, 129, 0.1),
      0 0 80px rgba(16, 185, 129, 0.05);
  }
  100% {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4),
      0 0 0 1px rgba(255, 255, 255, 0.05), 0 0 80px rgba(16, 185, 129, 0.2),
      0 0 160px rgba(16, 185, 129, 0.15);
  }
}

.main-card::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 25%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.3) 75%,
    rgba(0, 0, 0, 0.4) 100%
  );
  border-radius: 0 0 24px 24px;
  filter: blur(15px);
  z-index: -1;
}

/* About Section */
.about-section {
  padding: 3rem 3rem 2rem 3rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
}

.about-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.65;
  color: #d1d5db;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.about-text:last-child {
  margin-bottom: 0;
}

.inline-cta {
  color: #10b981;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.inline-cta:hover {
  border-bottom-color: #10b981;
  color: #34d399;
  text-shadow: 0 0 16px rgba(16, 185, 129, 0.3);
}

.about-image {
  text-align: center;
  position: relative;
}

.michael-img {
  width: 400px;
  height: 500px;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid #1f2937;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.michael-img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(16, 185, 129, 0.15);
}

/* Contact Section */
.contact-section {
  padding: 0 3rem 3rem 3rem;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-item {
  background: linear-gradient(135deg, #111827 0%, #0f1419 100%);
  padding: 2.5rem 2rem;
  border: 1px solid #1f2937;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #10b981, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-item:hover {
  border-color: #374151;
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(16, 185, 129, 0.1);
}

.contact-item:hover::before {
  opacity: 1;
}

.contact-item span {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-item a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
  line-height: 1.5;
}

.contact-item a:hover {
  color: #10b981;
}

/* Footer */
.copyright {
  text-align: center;
  padding: 2rem 0 3rem 0;
  color: #4b5563;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  position: relative;
  margin-top: 1rem;
  border-top: 1px solid #1f2937;
}

.copyright::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #10b981, transparent);
  opacity: 0.6;
}

.copyright::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(16, 185, 129, 0.05) 50%,
    rgba(16, 185, 129, 0.1) 100%
  );
  filter: blur(8px);
  z-index: -1;
}

/* Responsive Design */

/* Large tablets and small laptops */
@media (max-width: 1100px) {
  .main-card {
    margin: 0 1.5rem 2.5rem 1.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr 420px;
    gap: 3rem;
  }

  .michael-img {
    width: 360px;
    height: 450px;
  }
}

/* Tablets */
@media (max-width: 900px) {
  .main-card {
    margin: 0 1.5rem 2rem 1.5rem;
  }

  .about-section {
    padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2rem) 2rem
      clamp(1.5rem, 4vw, 2rem);
  }

  .contact-section {
    padding: 0 clamp(1.5rem, 4vw, 2rem) 2rem clamp(1.5rem, 4vw, 2rem);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 2rem;
  }

  .hero-headline {
    text-align: center;
    font-size: clamp(1.8rem, 6vw, 3rem);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
  }

  .about-content {
    order: 2;
  }

  .about-image {
    order: 1;
  }

  .michael-img {
    width: clamp(300px, 40vw, 380px);
    height: clamp(375px, 50vw, 475px);
  }

  .contact {
    max-width: 100%;
    gap: clamp(1.5rem, 4vw, 2rem);
  }

  .about-text {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
  }
}

/* Large mobile */
@media (max-width: 700px) {
  .main-card {
    margin: 0 1rem 2rem 1rem;
    border-radius: clamp(20px, 4vw, 24px);
  }

  .logo {
    padding: clamp(1.5rem, 4vw, 2rem) 0 clamp(1rem, 3vw, 1.5rem) 0;
  }

  .logo-text {
    font-size: clamp(0.65rem, 2vw, 0.75rem);
  }

  .about-section {
    padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 3vw, 1.5rem)
      clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem);
  }

  .hero-headline {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
  }

  .about-grid {
    gap: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
  }

  .about-text {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.6;
  }

  .michael-img {
    width: clamp(260px, 35vw, 320px);
    height: clamp(325px, 44vw, 400px);
  }

  .about-image {
    padding-top: clamp(2rem, 6vw, 4rem);
  }

  .contact {
    grid-template-columns: 1fr;
    gap: clamp(1rem, 3vw, 1.5rem);
  }

  .contact-section {
    padding: 0 clamp(1rem, 3vw, 1.5rem) clamp(1.5rem, 4vw, 2rem)
      clamp(1rem, 3vw, 1.5rem);
  }

  .contact-item {
    padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 3vw, 1.5rem);
  }

  .contact-item span {
    font-size: clamp(0.7rem, 2vw, 0.75rem);
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
  }

  .contact-item a {
    font-size: clamp(0.85rem, 2.2vw, 0.95rem);
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .main-card {
    margin: 0 0.75rem 1.5rem 0.75rem;
    border-radius: 20px;
  }

  .logo {
    padding: 1.5rem 0 1rem 0;
  }

  .about-section {
    padding: 1.5rem 1rem 1rem 1rem;
  }

  .hero-headline {
    font-size: clamp(1.25rem, 8vw, 2rem);
    line-height: 1.2;
  }

  .about-grid {
    gap: 1.5rem;
  }

  .michael-img {
    width: clamp(220px, 32vw, 280px);
    height: clamp(275px, 40vw, 350px);
  }

  .about-image {
    padding-top: clamp(1.5rem, 5vw, 3rem);
  }

  .contact-section {
    padding: 0 1rem 1.5rem 1rem;
  }

  .contact-item {
    padding: 1.5rem 1rem;
  }

  .copyright {
    padding: 1.5rem 0 2rem 0;
    font-size: 0.65rem;
  }
}
