* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1f2029;
  background: #0d0c12;
}

/* ---------- Hero ---------- */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(55% 50% at 12% 18%, rgba(255, 127, 107, 0.65) 0%, transparent 65%),
    radial-gradient(50% 45% at 88% 12%, rgba(124, 92, 255, 0.6) 0%, transparent 65%),
    radial-gradient(55% 50% at 15% 88%, rgba(53, 208, 192, 0.55) 0%, transparent 65%),
    radial-gradient(50% 45% at 90% 90%, rgba(255, 207, 92, 0.5) 0%, transparent 65%),
    #100f17;
}

.hero-card {
  max-width: 620px;
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 48px 56px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 1;
}

.hero-card h1 {
  color: #ffffff;
  font-size: 2.6rem;
  margin: 0 0 20px;
}

.hero-card p {
  color: #e4e2ee;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 14px;
}

.hero-card strong {
  color: #ffffff;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 24px 0 4px;
}

.socials a {
  color: #e4e2ee;
  transition: color 0.15s ease;
}

.socials a:hover {
  color: #ffffff;
}

.scroll-cue {
  display: inline-flex;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.55);
  animation: bob 2s ease-in-out infinite;
}

.scroll-cue:hover {
  color: #ffffff;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---------- Projects ---------- */

.projects {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 24px;
}

.projects > h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 36px;
  color: #f4f2fa;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.project-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.project-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.project-visual {
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid #e2e2e8;
  border-radius: 16px;
  overflow: hidden;
}

.soundprint-visual {
  background: linear-gradient(160deg, #f4fdf8, #e6f7ee);
}

.gooseguide-visual {
  background: linear-gradient(160deg, #fdf8ef, #f5ecd9);
}

.logo-name {
  font-weight: 700;
  font-size: 1.15rem;
  color: #1f2029;
}

.hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 28px;
  background: rgba(12, 12, 18, 0.92);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.project-card:hover .hover-overlay {
  opacity: 1;
  transform: translateY(0);
}

.hover-overlay p {
  color: #f1f1f5;
  line-height: 1.55;
  font-size: 0.92rem;
  margin: 0;
}

.hover-overlay .note {
  font-size: 0.8rem;
  color: #b7b7c2;
  font-style: italic;
}

.project-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #c9b6ff;
  cursor: pointer;
}

.project-link:hover {
  text-decoration: underline;
}

/* ---------- Contact ---------- */

.contact {
  max-width: 620px;
  margin: 0 auto;
  padding: 20px 24px 100px;
  text-align: center;
}

.contact h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #f4f2fa;
}

.contact > p {
  color: #b9b7c4;
  margin-bottom: 32px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.contact-row {
  display: flex;
  gap: 10px;
  font-size: 1rem;
}

.contact-label {
  color: #9a97a8;
  min-width: 60px;
  text-align: right;
}

.contact-row a {
  color: #caa8ff;
  text-decoration: none;
  font-weight: 600;
}

.contact-row a:hover {
  text-decoration: underline;
}

/* ---------- Responsive ---------- */

@media (max-width: 640px) {
  .hero-card {
    padding: 36px 28px;
  }

  .hero-card h1 {
    font-size: 2.1rem;
  }
}
