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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #FFF5E6;
  color: #111827;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 48px 24px;
}

/* Bento grid */
.bento {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}

.bento:hover {
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.06);
}

/* Hero */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  background: linear-gradient(135deg, #FAD4C0 0%, #FFF5E6 60%);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero-main {
  flex: 2;
  min-width: 280px;
}

.hero-main h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #4b5563;
  margin-bottom: 6px;
}

.location {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 20px;
}

.hero-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  background: #111827;
  color: #fff;
  transition: opacity 0.2s;
}

.pill:hover {
  opacity: 0.85;
}

.hero-stats {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat {
  text-align: center;
  background: rgba(255,255,255,0.7);
  border-radius: 14px;
  padding: 16px 12px;
}

.stat-value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  margin-top: 2px;
}

/* About */
.about {
  margin-bottom: 20px;
}

.about h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
}

.about p {
  font-size: 16px;
  color: #374151;
  margin-bottom: 12px;
}

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

/* Skills */
.skills {
  margin-bottom: 48px;
}

.skills h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  background: #FAD4C0;
  color: #111827;
}

/* Section title */
.section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

/* Experience */
.experience-section {
  margin-bottom: 48px;
}

.experience {
  margin-bottom: 16px;
}

.exp-header {
  margin-bottom: 14px;
}

.exp-header h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}

.company {
  font-size: 15px;
  font-weight: 500;
  color: #4b5563;
  margin-top: 2px;
}

.date {
  font-weight: 400;
  color: #9ca3af;
  font-size: 14px;
}

.exp-summary {
  font-size: 15px;
  color: #374151;
  margin-bottom: 14px;
  font-weight: 500;
}

.experience ul {
  list-style: none;
  padding: 0;
  margin-bottom: 14px;
}

.experience ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #374151;
}

.experience ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #80A1C1;
}

.exp-pm {
  font-size: 15px;
  color: #374151;
  margin-bottom: 14px;
  padding: 12px 16px;
  background: #F8FAFC;
  border-radius: 12px;
  border-left: 3px solid #80A1C1;
}

.exp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.exp-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  background: #EFF6FF;
  color: #1E40AF;
}

/* Two column grid */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

@media (max-width: 640px) {
  .grid-2col {
    grid-template-columns: 1fr;
  }
}

/* Education */
.education h2, .contact h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.edu-item {
  margin-bottom: 20px;
}

.edu-item:last-child {
  margin-bottom: 0;
}

.edu-degree {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.edu-school {
  font-size: 15px;
  color: #4b5563;
}

/* Contact */
.contact p {
  font-size: 15px;
  color: #374151;
  margin-bottom: 10px;
}

.contact a {
  color: #1E40AF;
  text-decoration: none;
  font-weight: 500;
}

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

/* Footer */
footer {
  text-align: center;
  padding-top: 32px;
  font-size: 14px;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 24px 16px;
  }

  .bento {
    padding: 24px;
  }

  .hero {
    flex-direction: column;
    gap: 24px;
  }

  .hero-stats {
    flex-direction: row;
    width: 100%;
  }

  .hero-main h1 {
    font-size: 32px;
  }

  .stat-value {
    font-size: 24px;
  }
}
