:root {
  --amh-gradient: linear-gradient(135deg, #ff1a1a 0%, #ff2f7a 45%, #d100ff 100%);
  --amh-text: #101828;
  --amh-muted: #667085;
  --amh-border: rgba(16, 24, 40, 0.08);
  --amh-shadow-soft: 0 12px 30px rgba(16, 24, 40, 0.06);
  --amh-shadow-strong: 0 24px 60px rgba(16, 24, 40, 0.12);
  --amh-bg-soft: #fafbff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--amh-text);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

::selection {
  background: #ff2f7a;
  color: #fff;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.center {
  text-align: center;
}

/* NAVBAR */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 1.2rem 0;
  background: transparent;
}

.nav-shell {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.08);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-brand img {
  width: 132px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  color: var(--amh-muted);
  font-size: 0.96rem;
  font-weight: 600;
  transition: color 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--amh-text);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--amh-gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-btn:hover {
  transform: translateY(-2px);
}

.nav-btn-primary {
  color: #fff;
  background: var(--amh-gradient);
  box-shadow: 0 14px 28px rgba(255, 47, 122, 0.22);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--amh-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--amh-text);
  cursor: pointer;
  backdrop-filter: blur(10px);
  padding: 0;
}

.menu-icon {
  width: 22px;
  height: 22px;
  stroke: #101828;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}

.mobile-panel {
  max-width: 1280px;
  margin: 0.7rem auto 0;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--amh-shadow-soft);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
}

.mobile-panel.open {
  max-height: 420px;
  opacity: 1;
  pointer-events: auto;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.mobile-panel a {
  text-decoration: none;
  color: var(--amh-text);
  font-weight: 600;
  padding: 0.9rem 0.4rem;
  border-bottom: 1px solid rgba(16, 24, 40, 0.06);
}

.mobile-panel a:last-child {
  border-bottom: 0;
}

.mobile-cta {
  margin-top: 0.3rem;
  justify-content: center;
  text-align: center;
  border-radius: 999px;
  color: #fff !important;
  background: var(--amh-gradient);
  padding: 0.9rem 1rem !important;
}

/* HERO */
.resume-hero {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 4rem;
  background:
    radial-gradient(circle at top left, rgba(255, 26, 26, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(209, 0, 255, 0.10), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
}

.resume-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.kicker,
.section-kicker,
.footer-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #b1008f;
  background: rgba(255, 47, 122, 0.06);
  border: 1px solid rgba(255, 47, 122, 0.14);
}

.resume-hero-copy h1 {
  margin: 1rem 0 1.1rem;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 760px;
}

.resume-hero-copy h1 span {
  display: block;
  margin-top: 0.45rem;
  background: var(--amh-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  max-width: 720px;
  margin: 0;
  color: var(--amh-muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-tags span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--amh-border);
  box-shadow: var(--amh-shadow-soft);
  font-size: 0.9rem;
  font-weight: 600;
  color: #344054;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-primary,
.btn-secondary,
.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary,
.footer-btn-primary {
  color: #fff;
  background: var(--amh-gradient);
  box-shadow: 0 16px 35px rgba(255, 47, 122, 0.22);
}

.btn-secondary,
.footer-btn-secondary {
  color: var(--amh-text);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--amh-border);
  backdrop-filter: blur(10px);
}

.btn-primary:hover,
.btn-secondary:hover,
.footer-btn:hover {
  transform: translateY(-2px);
}

.resume-hero-side {
  display: grid;
  gap: 1rem;
}

.glass-card {
  padding: 1.35rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--amh-shadow-soft);
}

.mini-kicker {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b1008f;
}

.hero-side-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.15rem;
}

.hero-side-card p {
  margin: 0;
  color: var(--amh-muted);
  line-height: 1.8;
}

.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}

.hero-bg-glow-left {
  width: 340px;
  height: 340px;
  left: -100px;
  top: 40px;
  background: radial-gradient(circle, rgba(255, 47, 122, 0.14), transparent 70%);
}

.hero-bg-glow-right {
  width: 380px;
  height: 380px;
  right: -120px;
  top: 60px;
  background: radial-gradient(circle, rgba(209, 0, 255, 0.14), transparent 72%);
}

/* SECTIONS */
.resume-section {
  padding: 4.5rem 0;
}

.resume-section.alt {
  background: var(--amh-bg-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading.narrow {
  max-width: 640px;
}

.section-heading h2 {
  margin: 1rem 0 0.85rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--amh-muted);
  line-height: 1.85;
}

.grid-3,
.grid-4 {
  display: grid;
  gap: 1.4rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: 1.8rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.06);
  box-shadow: var(--amh-shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--amh-shadow-strong);
}

.card h3,
.card h4 {
  margin: 0 0 0.8rem;
  line-height: 1.3;
}

.card h3::after,
.card h4::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 0.75rem;
  border-radius: 999px;
  background: var(--amh-gradient);
}

.card p {
  margin: 0;
  color: var(--amh-muted);
  line-height: 1.8;
}

.card.small {
  padding: 1.35rem;
}

/* TIMELINE */
.timeline {
  border-left: 2px solid rgba(16, 24, 40, 0.08);
  padding-left: 1.5rem;
  display: grid;
  gap: 1.6rem;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.94rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff1a1a 0%, #ff2f7a 45%, #d100ff 100%);
  box-shadow: 0 0 0 6px rgba(255, 47, 122, 0.08);
}

.timeline-year {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b1008f;
}

.timeline-item h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
}

.timeline-item p {
  margin: 0;
  color: var(--amh-muted);
  line-height: 1.8;
}

/* EDUCATION */
.education-card {
  max-width: 640px;
  padding: 1.8rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.06);
  box-shadow: var(--amh-shadow-soft);
}

.education-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
}

.education-card p {
  margin: 0;
  color: var(--amh-muted);
  line-height: 1.8;
}

/* BRIDGE */
.resume-bridge {
  padding: 5rem 0;
  background:
    radial-gradient(circle at center top, rgba(255, 47, 122, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
}

.resume-bridge h2 {
  margin: 1rem 0 0.85rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.resume-bridge p {
  max-width: 620px;
  margin: 0 auto 1.6rem;
  color: var(--amh-muted);
  line-height: 1.8;
}

/* FOOTER */
.footer-premium {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
  overflow: hidden;
  margin-top: 1rem;
}

.footer-cta-shell {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-cta {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 4rem 3rem;
  background:
    radial-gradient(circle at top left, rgba(255, 26, 26, 0.08), transparent 26%),
    radial-gradient(circle at bottom right, rgba(209, 0, 255, 0.10), transparent 30%),
    rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 30px 70px rgba(16, 24, 40, 0.10);
  text-align: center;
  z-index: 2;
}

.footer-cta h2 {
  margin: 1rem 0 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #101828;
}

.footer-cta h2 span {
  background: var(--amh-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-cta p {
  max-width: 760px;
  margin: 1.4rem auto 0;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #667085;
}

.footer-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.footer-cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
  z-index: 1;
}

.footer-cta-glow-left {
  width: 280px;
  height: 280px;
  left: -60px;
  top: 40px;
  background: radial-gradient(circle, rgba(255, 47, 122, 0.14), transparent 70%);
}

.footer-cta-glow-right {
  width: 320px;
  height: 320px;
  right: -80px;
  bottom: 10px;
  background: radial-gradient(circle, rgba(209, 0, 255, 0.14), transparent 72%);
}

.footer-bottom {
  padding: 4rem 2rem 1.6rem;
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-top: 2.8rem;
}

.footer-brand-block {
  max-width: 360px;
}

.footer-brand img {
  width: 130px;
  height: auto;
}

.footer-brand-block p {
  margin: 1rem 0 0;
  color: #667085;
  line-height: 1.8;
  font-size: 0.96rem;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links-group span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b1008f;
  margin-bottom: 0.25rem;
}

.footer-links-group a {
  text-decoration: none;
  color: #475467;
  font-weight: 500;
  transition: color 0.25s ease;
}

.footer-links-group a:hover {
  color: #d1008f;
}

.footer-bottom-bar {
  max-width: 1280px;
  margin: 2.4rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(16, 24, 40, 0.08);
}

.footer-bottom-bar p {
  margin: 0;
  color: #98a2b3;
  font-size: 0.92rem;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .main-nav,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .resume-hero-grid {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 0.8rem 0.8rem 0;
  }

  .nav-shell {
    min-height: 72px;
    padding: 0 1rem;
    border-radius: 20px;
  }

  .nav-brand img {
    width: 118px;
  }

  .mobile-panel {
    margin-left: 0.8rem;
    margin-right: 0.8rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 20px;
  }

  .resume-hero {
    padding: 5rem 0 3.2rem;
  }

  .resume-hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.7rem);
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .resume-section,
  .resume-bridge {
    padding: 3.5rem 0;
  }

  .footer-premium {
    margin-top: 0;
  }

  .footer-cta-shell,
  .footer-bottom {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .footer-cta {
    padding: 2.4rem 1.3rem;
    border-radius: 28px;
  }

  .footer-cta h2 {
    font-size: clamp(1.8rem, 9vw, 2.8rem);
  }

  .footer-cta p {
    font-size: 0.98rem;
  }

  .footer-bottom-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}