/* ── Tokens ── */
:root {
  --dark:      #1c2e3a;
  --dark-2:    #243a48;
  --accent:    #4ab8c4;
  --accent-bg: rgba(74, 184, 196, 0.10);
  --white:     #ffffff;
  --gray-50:   #f8fafc;
  --gray-100:  #f1f5f9;
  --gray-400:  #94a3b8;
  --gray-500:  #64748b;
  --gray-600:  #475569;
  --text:      #1e293b;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: var(--white);
}

/* ── Shared container ── */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ════════════════════════════════
   NAVIGATION
════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(28, 46, 58, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(74, 184, 196, 0.12);
}

.nav__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__monogram {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.nav__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.nav__role {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow decorations */
.hero::before {
  content: '';
  position: absolute;
  top: -240px;
  right: -240px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,184,196,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,184,196,0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* Large watermark monogram */
.hero__watermark {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 260px;
  font-weight: 800;
  color: rgba(255,255,255,0.025);
  letter-spacing: -8px;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px 80px;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero__name {
  font-size: clamp(58px, 8.5vw, 100px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -3px;
  line-height: 0.95;
  margin-bottom: 22px;
}

.hero__title {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.hero__rule {
  width: 48px;
  height: 2px;
  background: rgba(74, 184, 196, 0.35);
  margin-bottom: 28px;
}

.hero__bio {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 44px;
}

.hero__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
}

.hero__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 7px 15px;
  margin-right: 10px;

  border: 1.5px solid rgba(74, 184, 196, 0.22);
  border-radius: 6px;

  background: rgba(74, 184, 196, 0.04);

  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;

  text-decoration: none;

  transition:
  background 0.18s ease,
  border-color 0.18s ease,
  color 0.18s ease;
}

.hero__contact-item::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero__contact-item:hover {
  background: rgba(74, 184, 196, 0.12);
  border-color: rgba(74, 184, 196, 0.45);
  color: var(--white);
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 15px;
  border: 1.5px solid rgba(74, 184, 196, 0.45);
  border-radius: 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.linkedin-btn:hover {
  background: rgba(74, 184, 196, 0.12);
  border-color: var(--accent);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.18);
  z-index: 1;
  animation: bob 2.4s ease-in-out infinite;
}

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

/* ════════════════════════════════
   SECTIONS — SHARED
════════════════════════════════ */
.section {
  padding: 96px 0;
}

.bg-white { background: var(--white); }
.bg-muted  { background: var(--gray-50); }

.section__label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 52px;
}

/* Placeholder style — visible but clearly temporary */
.ph {
  color: var(--gray-400);
  font-style: italic;
}

/* ════════════════════════════════
   ABOUT
════════════════════════════════ */
.about__text {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--gray-500);
  max-width: 680px;
}

/* ════════════════════════════════
   EXPERIENCE
════════════════════════════════ */
.exp-list {
  display: flex;
  flex-direction: column;
}

.exp-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0 48px;
  padding: 32px 0;
  border-top: 1px solid var(--gray-100);
}

.exp-card:last-child {
  border-bottom: 1px solid var(--gray-100);
}

.exp-card__date {
  font-size: 12px;
  color: var(--gray-400);
  padding-top: 3px;
  line-height: 1.5;
}

.exp-card__role {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.25;
}

.exp-card__company {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.exp-card__desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.75;
}

/* ════════════════════════════════
   SKILLS
════════════════════════════════ */
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag {
  font-size: 13px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(74, 184, 196, 0.28);
  color: var(--dark);
  background: var(--accent-bg);
}

/* ════════════════════════════════
   EDUCATION
════════════════════════════════ */
.edu-list {
  display: flex;
  flex-direction: column;
}

.edu-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0 48px;
  padding: 28px 0;
  border-top: 1px solid var(--gray-100);
}

.edu-item:last-child {
  border-bottom: 1px solid var(--gray-100);
}

.edu-item__date {
  font-size: 12px;
  color: var(--gray-400);
  padding-top: 3px;
}

.edu-item__degree {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.edu-item__school {
  font-size: 13px;
  color: var(--gray-500);
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 64px 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer__monogram {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  font-size: 15px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.footer__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer__role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: right;
}

.footer__contact p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
}

/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 680px) {
  .container          { padding: 0 24px; }
  .nav__inner         { padding: 0 24px; }
  .hero__inner        { padding: 0 24px 60px; }
  .nav__role          { display: none; }
  .hero__watermark    { display: none; }
  .hero__contact      { flex-direction: column; align-items: flex-start; gap: 10px; }
  .section            { padding: 64px 0; }
  .section__title     { margin-bottom: 36px; }
  .about__text        { font-size: 16px; }
  .exp-card,
  .edu-item           { grid-template-columns: 1fr; gap: 4px; }
  .exp-card__date,
  .edu-item__date     { font-size: 11px; }
  .footer__inner      { flex-direction: column; }
  .footer__contact    { text-align: left; }
}

/* ── Print ── */
@media print {
  .nav, .hero__scroll { display: none; }
  .hero { min-height: auto; padding: 48px 0; }
  .section { padding: 40px 0; }
}
