/* ============================================================
   Variables
   ============================================================ */
:root {
  --accent:      #38bdf8;
  --accent-2:    #818cf8;
  --accent-dim:  rgba(56, 189, 248, 0.12);
  --gradient:    linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);

  --bg:          #080d1a;
  --surface:     #0f172a;
  --surface-2:   #1a2540;
  --border:      rgba(148, 163, 184, 0.1);
  --border-2:    rgba(148, 163, 184, 0.18);

  --text:        #e2e8f0;
  --text-muted:  #94a3b8;
  --text-dim:    #475569;

  --font:        'Outfit', sans-serif;
  --max-w:       1160px;
  --radius:      14px;
  --radius-lg:   20px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  0.25s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button { font-family: var(--font); }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 100px 0;
}

.section--alt {
  background: var(--surface);
}

/* ============================================================
   Section Header
   ============================================================ */
.section__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section__title {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 3.5rem;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #080d1a;
}
.btn--primary:hover {
  background: #7dd3fc;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(56, 189, 248, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn--ghost {
  background: var(--surface-2);
  color: var(--text);
}
.btn--ghost:hover {
  background: var(--accent-dim);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background 0.35s var(--ease),
              padding   0.35s var(--ease),
              box-shadow 0.35s var(--ease);
}

.nav.scrolled {
  background: rgba(8, 13, 26, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav.menu-open {
  background: rgba(8, 13, 26, 0.95);
  z-index: 600;
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav__logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-right: auto;
  transition: color var(--transition);
}
.nav__logo:hover { color: var(--accent); }
.nav__logo span  { color: var(--accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--text);
}
.nav__links a:hover::after,
.nav__links a.active::after {
  transform: scaleX(1);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 600;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu overlay */
.mobile-menu {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(8, 13, 26, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-muted);
  transform: translateY(12px);
  opacity: 0;
  transition: color var(--transition),
              transform 0.35s var(--ease),
              opacity 0.35s var(--ease);
}
.mobile-menu.open a {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu a:hover { color: var(--text); }


/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/rn3.jpg');
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.3) saturate(0.75);
  transform: scale(1.03);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 13, 26, 0.2) 0%,
    rgba(8, 13, 26, 0.7) 60%,
    rgba(8, 13, 26, 1)   100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  padding: 0 2rem;
  animation: heroFadeIn 1s var(--ease) both;
}

/* Left column */
.hero__left { display: flex; flex-direction: column; align-items: flex-start; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent-dim);
  border: 1px solid rgba(56, 189, 248, 0.28);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero__badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

.hero__name {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero__bio {
  margin-bottom: 2.25rem;
}
.hero__bio p {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.hero__bio p:last-child { margin-bottom: 0; }
.hero__bio b { color: var(--text); font-weight: 600; }

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero__social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.hero__social a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.hero__social a:hover {
  color: var(--accent);
  background: var(--accent-dim);
}

/* Right card */
.hero__card {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero__card-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.hero__card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero__card-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.hero__card-divider {
  height: 1px;
  background: var(--border);
}

.hero__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2.5s ease infinite;
}

.hero__scroll a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}
.hero__scroll a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   About
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about__text p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.15rem;
}
.about__text p:last-child { margin-bottom: 0; }
.about__text b {
  color: var(--text);
  font-weight: 600;
}

.about__photo {
  position: relative;
}
.about__photo::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid var(--border-2);
  border-radius: calc(var(--radius-lg) + 10px);
  pointer-events: none;
}
.about__photo::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 40%;
  height: 40%;
  background: var(--gradient);
  border-radius: 50%;
  opacity: 0.07;
  filter: blur(30px);
  pointer-events: none;
}
.about__photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
}

.about__education-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  transition: border-color var(--transition), transform var(--transition);
}
.timeline__item:hover {
  border-color: rgba(56, 189, 248, 0.3);
  transform: translateX(5px);
}

.timeline__school {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
  transition: color var(--transition);
}
.timeline__item:hover .timeline__school { color: var(--accent); }
.timeline__school a { transition: color var(--transition); }

.timeline__degree {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.timeline__period {
  font-size: 0.78rem;
  color: var(--text-dim);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 0.15rem;
  font-weight: 600;
}

/* ============================================================
   Skills
   ============================================================ */
.skills__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 4.5rem;
  align-items: start;
}

/* Language bars */
.lang-bars {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.lang-bar__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.6rem;
}

.lang-bar__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.lang-bar__level {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 500;
}

.lang-bar__track {
  height: 4px;
  background: var(--surface-2);
  border-radius: 4px;
  overflow: hidden;
}

.lang-bar__fill {
  height: 100%;
  border-radius: 4px;
  background: var(--gradient);
  width: 0;
  transition: width 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Tech skill cards */
.skill-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.skill-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}
.skill-card:hover {
  border-color: rgba(56, 189, 248, 0.28);
  transform: translateY(-3px);
}

.skill-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.skill-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--surface-2);
  color: var(--text-muted);
  padding: 0.25rem 0.65rem;
  border-radius: 5px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.tag:hover {
  color: var(--accent);
  border-color: rgba(56, 189, 248, 0.25);
}

.tag--highlight {
  background: var(--accent-dim);
  color: var(--accent);
  border-color: rgba(56, 189, 248, 0.25);
}

/* Soft skills */
.soft-skills__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.soft-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}
.soft-card:hover {
  border-color: rgba(56, 189, 248, 0.28);
  transform: translateY(-4px);
}

.soft-card__num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.soft-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.soft-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   Intro strip
   ============================================================ */
.intro {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.intro__text {
  max-width: 760px;
}

.intro__text p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}
.intro__text p:last-child { margin-bottom: 0; }

.intro__text b {
  color: var(--text);
  font-weight: 600;
}

/* ============================================================
   Education (compact)
   ============================================================ */
.section--education {
  padding: 60px 0;
}

.section--education .section__eyebrow {
  margin-bottom: 1.5rem;
  display: block;
}

.education__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.edu-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: border-color var(--transition);
}
.edu-item:hover {
  border-color: rgba(56, 189, 248, 0.22);
}

.edu-item__school {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.edu-item__school a { transition: color var(--transition); }
.edu-item__school a:hover { color: var(--accent); }

.edu-item__degree {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.edu-item__period {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
}

@media (max-width: 768px) {
  .education__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Experience
   ============================================================ */
.experience__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.exp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition);
}
.exp-card:hover {
  border-color: rgba(56, 189, 248, 0.22);
}

.exp-card__header {
  padding: 1.75rem 2.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}

.exp-card__company {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.exp-card__meta {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.exp-card__total {
  font-size: 0.78rem;
  color: var(--text-dim);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 0.2rem;
}

.exp-card__roles {
  padding: 0 2.25rem;
}

.exp-role {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.exp-role:last-child { border-bottom: none; }

.exp-role__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 1.1rem;
}

.exp-role__title {
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text);
}

.exp-role__period {
  font-size: 0.78rem;
  color: var(--text-dim);
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 500;
}

.exp-role__bullets {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.exp-role__bullet {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 1.25rem;
  position: relative;
}
.exp-role__bullet::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

/* ============================================================
   Footer / Contact
   ============================================================ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer__main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 5rem;
  align-items: start;
}

.footer__cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer__cta-title {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer__contact-item h5 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}
.footer__contact-item a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__contact-item a:hover { color: var(--accent); }

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.footer__social a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 0.4rem 0.95rem;
  border-radius: 50px;
  transition: var(--transition);
}
.footer__social a:hover {
  color: var(--accent);
  border-color: rgba(56, 189, 248, 0.3);
  background: var(--accent-dim);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer__bottom a {
  transition: color var(--transition);
}
.footer__bottom a:hover { color: var(--accent); }

/* ============================================================
   Scroll Reveal
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-reveal].visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Animations
   ============================================================ */
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.85); }
}

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

/* ============================================================
   Responsive — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero__card { display: none; }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about__photo {
    max-width: 280px;
    margin: 0 auto;
  }
  .skills__top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .soft-skills__grid {
    grid-template-columns: 1fr 1fr;
  }
  .exp-card__header {
    flex-direction: column;
    gap: 0.25rem;
  }
  .footer__main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ============================================================
   Responsive — 768px
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav__links { display: none; }
  .nav__toggle { display: flex; }

  .skill-cards {
    grid-template-columns: 1fr 1fr;
  }

  .timeline__item {
    flex-direction: column;
    gap: 0.4rem;
  }

  .exp-card__header,
  .exp-card__roles { padding-left: 1.5rem; padding-right: 1.5rem; }
  .exp-role__header { flex-direction: column; gap: 0.25rem; }
}

/* ============================================================
   Responsive — 560px
   ============================================================ */
@media (max-width: 560px) {
  .section { padding: 60px 0; }

  .skill-cards       { grid-template-columns: 1fr; }
  .soft-skills__grid { grid-template-columns: 1fr; }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__scroll { display: none; }

  .section__title { margin-bottom: 2.5rem; }
}
