@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600&display=swap');

/* =========================================
   HAWAX — Premium Resume / style.css
   ========================================= */

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

:root {
  /* palette */
  --bg: #0A0A0A;
  --bg-sec: #111111;
  --card: #151515;
  --text: #F5F5F5;
  --text-sec: #A1A1AA;
  --text-mute: #71717A;
  --accent: #D4D4D8;
  --accent-hover: #3B82F6;
  --border: rgba(255, 255, 255, .06);
  --border-h: rgba(255, 255, 255, .12);

  /* type */
  --ff-heading: 'Space Grotesk', sans-serif;
  --ff-body: 'Inter', 'Manrope', sans-serif;

  /* layout */
  --max-w: 1200px;
  --nav-h: 72px;
  --radius: 20px;
  --radius-sm: 12px;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden
}

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

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

ul {
  list-style: none
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap
}

/* label */
.label {
  font-family: var(--ff-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal-d1 {
  transition-delay: .08s
}

.reveal-d2 {
  transition-delay: .16s
}

.reveal-d3 {
  transition-delay: .24s
}

.reveal-d4 {
  transition-delay: .32s
}

.reveal-d5 {
  transition-delay: .40s
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-heading);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all .3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-h);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent)
}

.btn-tg {
  background: transparent;
  color: var(--text-sec);
  border: 1px solid var(--border-h);
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 14px;
}

.btn-tg:hover {
  border-color: var(--accent-hover);
  color: var(--accent-hover)
}

.btn-tg svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 10, 10, .7);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.nav-logo {
  font-family: var(--ff-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sec);
  transition: color .25s;
}

.nav-links a:hover {
  color: var(--text)
}

.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
}

.nav-mobile-btn svg {
  width: 24px;
  height: 24px
}

/* mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 24px;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, .96);
  backdrop-filter: blur(20px);
  padding: 32px;
  border-bottom: 1px solid var(--border);
  z-index: 99;
}

.mobile-menu.open {
  display: flex
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-sec)
}

.mobile-menu a:hover {
  color: var(--text)
}

/* ---------- HERO ---------- */
.hero {
  padding-top: calc(var(--nav-h) + 120px);
  padding-bottom: 100px;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: #050507;
}

/* ---- atmosphere container ---- */
.hero-atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* ---- gradient layers ---- */
.hero-grad {
  position: absolute;
  border-radius: 50%;
  pointer-events: none
}

.hero-grad--center {
  width: 900px;
  height: 900px;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(140, 130, 160, .06) 0%, rgba(80, 70, 120, .03) 35%, transparent 70%);
}

.hero-grad--accent1 {
  width: 600px;
  height: 600px;
  top: 15%;
  right: -5%;
  background: radial-gradient(circle, rgba(100, 80, 180, .05) 0%, rgba(70, 50, 160, .02) 40%, transparent 70%);
}

.hero-grad--accent2 {
  width: 500px;
  height: 500px;
  bottom: 5%;
  left: 10%;
  background: radial-gradient(circle, rgba(50, 100, 200, .04) 0%, rgba(30, 70, 160, .015) 40%, transparent 70%);
}

.hero-grad--vignette {
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 45%, transparent 0%, rgba(5, 5, 7, .6) 100%);
}

/* ---- noise texture ---- */
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* ---- floating orbs ---- */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  will-change: transform;
}

.hero-orb--1 {
  width: 320px;
  height: 320px;
  top: 8%;
  right: 12%;
  background: radial-gradient(circle, rgba(110, 80, 190, .08), transparent 70%);
  animation: orbDrift1 16s ease-in-out infinite;
}

.hero-orb--2 {
  width: 260px;
  height: 260px;
  bottom: 15%;
  left: 5%;
  background: radial-gradient(circle, rgba(50, 100, 210, .06), transparent 70%);
  animation: orbDrift2 20s ease-in-out infinite;
}

.hero-orb--3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 55%;
  background: radial-gradient(circle, rgba(160, 140, 200, .05), transparent 70%);
  animation: orbDrift3 14s ease-in-out infinite;
}

@keyframes orbDrift1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  25% {
    transform: translate(-20px, 15px) scale(1.04)
  }

  50% {
    transform: translate(10px, -20px) scale(.97)
  }

  75% {
    transform: translate(15px, 10px) scale(1.02)
  }
}

@keyframes orbDrift2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(18px, -12px) scale(1.05)
  }

  66% {
    transform: translate(-15px, 18px) scale(.96)
  }
}

@keyframes orbDrift3 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(-25px, -15px) scale(1.06)
  }
}

/* ---- cursor-reactive light ---- */
.hero-cursor-light {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 170, 220, .06) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
  will-change: left, top;
}

.hero-cursor-light.active {
  opacity: 1
}

/* ---- hero grid & content ---- */
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.hero-label {
  font-family: var(--ff-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mute);
  opacity: .6;
  margin-bottom: 28px;
}

.hero-main {
  margin-bottom: 40px
}

.hero-name {
  font-family: var(--ff-heading);
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -.5px;
  line-height: 1.08;
  margin: 10px 0 14px;
  color: #fff;
  text-shadow: 0 0 80px rgba(180, 170, 240, .08), 0 0 30px rgba(255, 255, 255, .04);
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  opacity: .85;
  line-height: 1.4;
  margin-bottom: 0;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(130, 110, 200, .3), rgba(255, 255, 255, .1));
  margin: 22px 0;
}

.hero-sub {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.7;
  max-width: 520px;
  opacity: .75;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px
}

.hero-trust {
  font-size: 13px;
  color: var(--text-mute)
}

/* hero visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .45; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: .9; }
}

/* ---------- HERO SCROLL CUE ---------- */
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-mute);
  z-index: 1;
  pointer-events: none;
  will-change: transform;
  isolation: isolate;
  animation: scrollCueBounce 2s ease-in-out infinite;
}

@keyframes scrollCueBounce {
  0%, 100% { transform: translateX(-50%) translateY(0);   opacity: .45; }
  50%       { transform: translateX(-50%) translateY(6px); opacity: .9;  }
}

/* ---------- METRICS STRIP ---------- */
.metrics {
  padding: 64px 0;
  background: var(--bg-sec);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.metrics .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.metric-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform .35s ease, border-color .35s;
}

.metric-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-h)
}

.metric-val {
  font-family: var(--ff-heading);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--text);
}

.metric-label {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.4
}

/* ---------- ABOUT ---------- */
.about {
  padding: 120px 0
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.about-heading {
  font-family: var(--ff-heading);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.about-text p {
  font-size: 17px;
  color: var(--text-sec);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 28px;
}

.about-bullets li {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-bullets li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  opacity: .5;
}

/* ---------- EXPERIENCE TIMELINE ---------- */
.experience {
  padding: 120px 0;
  background: var(--bg-sec)
}

.section-header {
  text-align: center;
  margin-bottom: 72px
}

.section-title {
  font-family: var(--ff-heading);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-mute)
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 48px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-h);
}

.tl-item {
  position: relative;
  margin-bottom: 56px;
}

.tl-item:last-child {
  margin-bottom: 0
}

.tl-dot {
  position: absolute;
  left: -48px;
  top: 6px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg-sec);
  z-index: 2;
  transition: background .3s;
}

.tl-item:hover .tl-dot {
  background: var(--accent)
}

.tl-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color .35s;
}

.tl-card:hover {
  border-color: var(--border-h)
}

.tl-role {
  font-family: var(--ff-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.tl-company {
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 0
}

.tl-period {
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 0
}

.tl-meta {
  margin-bottom: 16px
}

.tl-sep {
  font-size: 13px;
  color: var(--border-h)
}

.tl-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.tl-card li {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.6;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.tl-card li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-mute);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ---------- COMPETENCIES ---------- */
.competencies {
  padding: 120px 0
}

.comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.comp-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform .35s, border-color .35s;
}

.comp-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-h)
}

.comp-card h3 {
  font-family: var(--ff-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.comp-card p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.7
}

/* ---------- SELECTED WINS ACCORDION ---------- */
.wins {
  padding: 120px 0;
  background: var(--bg-sec)
}

.wins-accordion {
  max-width: 860px;
  margin: 0 auto;
}

/* Item wrapper */
.win-accordion-item {
  border-bottom: 1px solid var(--border);
  transition: border-color .3s;
}

.win-accordion-item:first-child {
  border-top: 1px solid var(--border)
}

/* Trigger (outer) */
.win-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  text-align: left;
  color: var(--text);
  transition: color .25s;
}

.win-accordion-trigger:hover {
  color: var(--text)
}

.win-accordion-text {
  font-family: var(--ff-heading);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-sec);
  line-height: 1.5;
  transition: color .25s;
  flex: 1;
}

.win-accordion-trigger:hover .win-accordion-text,
.win-accordion-open .win-accordion-trigger .win-accordion-text {
  color: var(--text);
}

/* Chevron icon (outer) */
.win-accordion-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--text-mute);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), color .25s;
}

.win-accordion-icon::before,
.win-accordion-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), opacity .25s;
}

.win-accordion-icon::before {
  width: 10px;
  height: 1.5px;
  left: 1px
}

.win-accordion-icon::after {
  width: 10px;
  height: 1.5px;
  right: 1px
}

/* form a > shape (chevron down) */
.win-accordion-icon::before {
  transform: rotate(45deg) translateX(3.5px)
}

.win-accordion-icon::after {
  transform: rotate(-45deg) translateX(-3.5px)
}

/* rotate to < (up) when open */
.win-accordion-open .win-accordion-icon::before {
  transform: rotate(-45deg) translateX(3.5px)
}

.win-accordion-open .win-accordion-icon::after {
  transform: rotate(45deg) translateX(-3.5px)
}

/* Collapsible body (outer) */
.win-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.22, 1, .36, 1);
}

.win-accordion-body-inner {
  padding-bottom: 24px;
}

/* --- Nested Example toggle --- */
.win-example {
  margin-top: 4px;
}

.win-example-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding: 6px 0;
  transition: color .25s;
}

.win-example-trigger:hover,
.win-example-open .win-example-trigger {
  color: var(--accent)
}

/* Small chevron icon (inner) */
.win-example-icon {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

.win-example-icon::before,
.win-example-icon::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
}

.win-example-icon::before {
  transform: rotate(45deg) translateX(2.5px)
}

.win-example-icon::after {
  transform: rotate(-45deg) translateX(-2.5px)
}

.win-example-open .win-example-icon::before {
  transform: rotate(-45deg) translateX(2.5px)
}

.win-example-open .win-example-icon::after {
  transform: rotate(45deg) translateX(-2.5px)
}

/* Collapsible body (inner) */
.win-example-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.22, 1, .36, 1);
}

.win-example-body-inner {
  padding: 16px 0 8px;
}

.win-example-body-inner p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.75;
  border-left: 2px solid var(--border-h);
  padding-left: 16px;
}

/* Mobile responsive */
@media(max-width:640px) {
  .win-accordion-text {
    font-size: 17px
  }

  .win-accordion-trigger {
    padding: 18px 0
  }
}

/* ---------- FOUNDER PROJECTS ---------- */
.projects {
  padding: 120px 0
}

.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.proj-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: transform .35s, border-color .35s;
}

.proj-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-h)
}

.proj-card h3 {
  font-family: var(--ff-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.proj-label {
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 16px
}

.proj-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.proj-card li {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.6;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.proj-card li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-mute);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ---------- EDUCATION / LANGUAGES ---------- */
.edu {
  padding: 120px 0;
  background: var(--bg-sec)
}

.edu .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.edu-col h2 {
  font-family: var(--ff-heading);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 28px;
}

.edu-item {
  margin-bottom: 16px
}

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

.edu-item p {
  font-size: 14px;
  color: var(--text-sec)
}

.lang-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.lang-row span:last-child {
  color: var(--text-sec)
}

/* ---------- CTA FOOTER ---------- */
.cta {
  padding: 100px 0 80px;
  text-align: center;
}

.cta-sub {
  font-size: 17px;
  color: var(--text-sec);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px
}

.cta-contact {
  font-size: 14px;
  color: var(--text-mute);
  line-height: 1.8
}

.cta-contact a {
  color: var(--text-sec);
  transition: color .25s
}

.cta-contact a:hover {
  color: var(--accent-hover)
}

/* footer bottom */
.footer-bottom {
  text-align: center;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-mute);
}

/* ---------- RESPONSIVE ---------- */
@media(max-width:1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .hero-visual {
    order: -1;
    justify-content: center
  }

  .hero-name {
    font-size: 48px
  }

  .hero-title {
    font-size: 20px
  }

  .hero-orb--3 {
    display: none
  }

  .hero-cursor-light {
    display: none
  }

  .about .container {
    grid-template-columns: 1fr
  }

  .about-heading {
    position: static;
    font-size: 36px;
    margin-bottom: 32px
  }

  .metrics .container {
    grid-template-columns: repeat(2, 1fr)
  }

  .comp-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .proj-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .edu .container {
    grid-template-columns: 1fr
  }
}

@media(max-width:640px) {
  :root {
    --nav-h: 60px
  }

  .container {
    padding: 0 20px
  }

  .nav-links {
    display: none
  }

  .nav-mobile-btn {
    display: block
  }

  .hero {
    padding-top: calc(var(--nav-h) + 72px);
    padding-bottom: 64px
  }

  .hero-name {
    font-size: 42px
  }

  .hero-title {
    font-size: 18px
  }

  .hero-sub {
    font-size: 15px
  }

  .hero-orb {
    display: none
  }

  .hero-cursor-light {
    display: none
  }

  .hero-grad--accent1,
  .hero-grad--accent2 {
    opacity: .5
  }

  .metrics .container {
    grid-template-columns: 1fr 1fr
  }

  .metric-val {
    font-size: 32px
  }

  .section-title {
    font-size: 32px
  }

  .about {
    padding: 80px 0
  }

  .about-heading {
    font-size: 32px
  }

  .experience {
    padding: 80px 0
  }

  .competencies {
    padding: 80px 0
  }

  .comp-grid {
    grid-template-columns: 1fr
  }

  .wins {
    padding: 80px 0
  }

  .win-row {
    font-size: 18px
  }

  .projects {
    padding: 80px 0
  }

  .proj-grid {
    grid-template-columns: 1fr
  }

  .edu {
    padding: 80px 0
  }

  .cta {
    padding: 80px 0 60px
  }

  .cta-heading {
    font-size: 28px
  }

  .timeline {
    padding-left: 36px
  }

  .tl-dot {
    left: -36px
  }

  .avatar-wrap {
    width: 140px;
    height: 140px
  }

  .avatar-fallback {
    font-size: 36px
  }

  .lang-switch {
    order: 10
  }
}

/* ---------- AVATAR ---------- */
.avatar-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  position: relative;
  border: 1px solid rgba(160, 140, 220, .15);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, .5),
    0 0 0 1px rgba(140, 120, 200, .06),
    0 0 60px rgba(100, 80, 180, .06);
  overflow: visible;
  background: var(--card);
  flex-shrink: 0;
}

.avatar-wrap::before {
  content: '';
  position: absolute;
  inset: -35px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 100, 200, .10), rgba(80, 60, 160, .04) 50%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  animation: avatarBreath 6s ease-in-out infinite;
}

@keyframes avatarBreath {

  0%,
  100% {
    opacity: .8;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.04)
  }
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

.avatar-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-mute);
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  border-radius: 50%;
  z-index: 0;
}

.avatar-wrap.avatar-loaded .avatar-fallback {
  display: none
}

.avatar-glow {
  position: absolute;
  inset: -32px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(110, 90, 190, .07) 0%, rgba(60, 80, 180, .03) 40%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

@media(max-width:1024px) {
  .avatar-wrap {
    width: 160px;
    height: 160px
  }
}

/* ---------- LANGUAGE TOGGLE ---------- */
.lang-switch {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-h);
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 7px 14px;
  color: var(--text-mute);
  transition: all .25s ease;
}

.lang-btn.active {
  background: var(--text);
  color: var(--bg);
}

.lang-btn:hover:not(.active) {
  color: var(--text-sec)
}

/* mobile menu lang toggle */
.mobile-lang-switch {
  display: flex;
  gap: 0;
  width: fit-content;
  border: 1px solid var(--border-h);
  border-radius: 999px;
  overflow: hidden;
}

.mobile-lang-switch .lang-btn {
  padding: 8px 18px;
  font-size: 14px
}