:root {
  --bg-start: #05070f;
  --bg-end: #0f2747;
  --card-bg: rgba(17, 24, 39, 0.85);
  --text-primary: #ffffff;
  --text-secondary: #d1d5db;
  --muted: #9ca3af;
  --icon-bg: rgba(255, 255, 255, 0.08);
  --icon-color: #ffffff;
  --shadow: 0 40px 120px rgba(0, 0, 0, 0.65);
  --accent: #9b7b3d;
  --border-soft: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', 'Nunito Sans', sans-serif;
  color: var(--text-primary);
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.06), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(255,255,255,0.05), transparent 40%),
    linear-gradient(180deg, var(--bg-start), var(--bg-end));
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  animation: fadeIn 1s ease;
}

.card {
  width: min(100%, 780px);
  background: var(--card-bg);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* HERO CLEAN (NO OVERLAY, NO BLUR) */
.hero {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* remove overlay completely */
.hero-overlay {
  display: none;
}

/* also no text */
.hero-copy {
  display: none;
}

.content {
  padding: 64px min(9vw, 70px) 58px;
}

.content h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 3vw, 2.4rem);
  line-height: 1.25;
  font-weight: 800;
  color: var(--text-primary);
}

.content p {
  margin: 0 0 22px;
  font-size: clamp(1.05rem, 1.8vw, 1.17rem);
  line-height: 1.72;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.education {
  text-align: center;
  padding-top: 18px;
}

.education h3 {
  margin: 10px 0 18px;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  font-weight: 600;
  color: var(--muted);
}

.education ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.education li {
  margin: 10px 0;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--text-primary);
}

.socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.socials a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--icon-bg);
  color: var(--icon-color);
  font-size: 1.4rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 8px 18px rgba(0,0,0,0.18);
  transition: all 0.25s ease;
}

.socials a:hover {
  transform: translateY(-6px) scale(1.05);
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* smooth entry */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  .page-shell {
    padding: 0;
  }

  .card {
    width: 100%;
    min-height: 100vh;
    border-radius: 0;
    border: none;
  }

  .card:hover {
    transform: none;
  }

  .hero {
    height: 300px;
  }

  .content {
    padding: 44px 28px 52px;
  }
}
