* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: #05060a;
  color: #ffffff;
  overflow-x: hidden;
}

/* STAR CANVAS */
canvas#stars {
  position: fixed;
  inset: 0;
  z-index: -1;
}

/* HERO */
.hero {
  padding: 120px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo {
  width: 90px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 700;
}

.tagline {
  font-size: 1.2rem;
  opacity: 0.85;
  margin-top: 10px;
}

/* SOCIALS */
.socials {
  display: flex;
  gap: 22px;
  margin: 22px 0;
}

.socials a {
  font-size: 1.6rem;
  color: white;
  opacity: 0.85;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.socials a:hover {
  transform: translateY(-4px);
  opacity: 1;
}

/* BIO */
.bio {
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.8;
  opacity: 0.8;
  margin-top: 18px;
}

/* SECTIONS */
.section {
  padding: 80px 20px;
  text-align: center;
}

.section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

/* GLASS SERVICES */
.glass-grid {
  max-width: 1100px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.glass-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 26px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.12);
}

.glass-card i {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

/* WORK */
.work-grid {
  max-width: 1100px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.work-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.work-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 35px 90px rgba(0,0,0,0.55);
}

.work-card img {
  width: 100%;
  display: block;
}

.work-card a {
  display: block;
  padding: 14px;
  color: white;
  text-decoration: none;
  background: rgba(0,0,0,0.35);
}

/* CONTACT */
.contact {
  padding-bottom: 120px;
}

.gmail-btn {
  margin-top: 20px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 14px 26px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.25);
  text-decoration: none;
  color: white;
  transition: background 0.25s ease;
}

.gmail-btn:hover {
  background: rgba(255,255,255,0.12);
}

.muted {
  opacity: 0.7;
}