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

:root {
  --black: #07090f;
  --surface: #0c1018;
  --card: #111822;
  --card-2: #16202e;
  --border: rgba(255, 255, 255, 0.07);
  --border-h: rgba(0, 112, 210, 0.35);
  --violet: #0070D2;
  --violet-l: #1FBECD;
  --cyan: #40C4FF;
  --green: #36E082;
  --white: #EEF4FF;
  --muted: #6a7d96;
  --subtle: #344159;
  --sap-gold: #F0AB00;
  --font: 'Inter', system-ui, sans-serif;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
}

html {
  scroll-padding-top: 76px;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(0, 112, 210, .3);
}

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

ul {
  list-style: none;
}

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


.noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAGFBMVEUAAAAAAABupgeRAAAABnRSTlMAAAAAAABupgeRAAAAeUlEQVQ4y2NgwALG/39ghDA1MCQAcZgMDKxAGAkDK1AGwgwMrEAZCDMysAJlIMzMwAqUgTArgxWoAGF2BlagAoTVGFiBChD2ZGQFygD1YGAFyoD0Y2AFyoD0Y2AFyoD0Y2AFykAMgDEQZmNgBSrA8D8wQhh+A0MYAABZ2g1B4s3IhwAAAABJRU5ErkJggg==");
  background-size: 80px;
  will-change: transform;
}


.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--violet);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  will-change: transform;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(0, 112, 210, .4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  transition: width .25s ease, height .25s ease, border-color .25s ease;
}

body.hovering .cursor-follower {
  width: 50px;
  height: 50px;
  border-color: rgba(31, 190, 205, .6);
}

@media (hover:none) {

  .cursor,
  .cursor-follower {
    display: none;
  }
}

/* ═══════════════════════════════════
   NAV
═══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  transition: background .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8, 8, 16, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: var(--border);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.03em;
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.logo-first {
  background: linear-gradient(135deg, var(--violet-l), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-last {
  color: var(--white);
}

.nav-logo svg {
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 2px;
  flex: 1;
}

.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 14px;
  border-radius: 100px;
  transition: color .2s, background .2s;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .05);
}

.nav-links a.active {
  color: var(--white);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .875rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 100px;
  background: rgba(0, 112, 210, .12);
  border: 1px solid rgba(0, 112, 210, .35);
  color: var(--violet-l);
  transition: all .25s var(--ease);
  flex-shrink: 0;
}

.nav-cta:hover {
  background: rgba(31, 190, 205, .18);
  border-color: rgba(31, 190, 205, .5);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s var(--ease);
}

.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(8, 8, 16, .96);
  backdrop-filter: blur(24px);
  z-index: 899;
  padding: 20px 24px 32px;
  transform: translateY(-110%);
  transition: transform .4s var(--ease);
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu a {
  display: block;
  padding: 13px 16px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--r-sm);
  transition: all .2s;
}

.mobile-menu a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .05);
}

/* ═══════════════════════════════════
   LAYOUT
═══════════════════════════════════ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 120px 0;
}

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

.section-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

/* ═══════════════════════════════════
   FADE UP ANIMATION
═══════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

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

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .45;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(0, 112, 210, .06);
  border: 1px solid rgba(0, 112, 210, .2);
  border-radius: 100px;
  padding: 7px 18px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

.status-dot.sm {
  width: 6px;
  height: 6px;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 6px var(--green);
  }

  50% {
    box-shadow: 0 0 14px var(--green);
  }
}

.hero-h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.04em;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--violet-l) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
}

.desktop-br {
  display: inline;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Magnetic primary button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--violet) 0%, #0057A8 100%);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 32px rgba(0, 112, 210, .4), 0 0 0 1px rgba(0, 112, 210, .3);
  transition: transform .25s var(--ease), box-shadow .25s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(31, 190, 205, .4), 0 0 0 1px rgba(31, 190, 205, .4);
}

.btn-icon {
  display: flex;
  transition: transform .25s var(--ease-spring);
}

.btn-primary:hover .btn-icon {
  transform: translate(3px, -3px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border-h);
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  transition: all .25s var(--ease);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .2);
  transform: translateY(-2px);
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.hero-scroll span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--subtle);
}

.scroll-line {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, .08);
  border-radius: 1px;
  overflow: hidden;
}

.scroll-line-inner {
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, transparent, var(--violet-l));
  animation: scroll-sweep 2s ease-in-out infinite;
}

@keyframes scroll-sweep {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  100% {
    transform: translateY(250%);
    opacity: 0;
  }
}

/* Hero floating pills */
.hero-pills {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(7, 9, 15, .88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 112, 210, .2);
  border-radius: 100px;
  padding: 8px 16px;
  animation: pill-float 6s ease-in-out infinite;
}

.sap-mini-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 14px;
  border-radius: 3px;
  background: #0070D2;
  color: white;
  font-size: .48rem;
  font-weight: 900;
  letter-spacing: .02em;
  font-family: var(--font);
  flex-shrink: 0;
}

.pill-1 {
  top: 22%;
  left: 6%;
  animation-delay: 0s;
}

.pill-2 {
  top: 38%;
  left: 3%;
  animation-delay: -1.2s;
}

.pill-3 {
  top: 58%;
  left: 7%;
  animation-delay: -2.5s;
}

.pill-4 {
  top: 25%;
  right: 5%;
  animation-delay: -.8s;
}

.pill-5 {
  top: 52%;
  right: 4%;
  animation-delay: -3.1s;
}

@keyframes pill-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 900px) {
  .hero-pills {
    display: none;
  }
}

/* ═══════════════════════════════════
   ABOUT — BENTO GRID
═══════════════════════════════════ */
.about-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.bento-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}

.bento-card:hover {
  border-color: rgba(0, 112, 210, .35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .35);
}

/* Bio card — spans 8 cols */
.bento-bio {
  grid-column: span 8;
  padding: 36px;
}

.bento-inner {
  display: flex;
  gap: 32px;
  align-items: center;
}

.avatar-block {
  position: relative;
  flex-shrink: 0;
}

.avatar-frame {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid rgba(0, 112, 210, .3);
  overflow: hidden;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-badge {
  position: absolute;
  bottom: -4px;
  right: -6px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--green);
  background: rgba(14, 14, 24, .9);
  border: 1px solid rgba(74, 222, 128, .2);
  border-radius: 100px;
  padding: 3px 10px;
  white-space: nowrap;
}

.bio-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -.04em;
  margin-bottom: 4px;
}

.bio-role {
  font-size: .85rem;
  font-weight: 600;
  color: var(--violet-l);
  margin-bottom: 12px;
}

.bio-desc {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Stats card — 4 cols */
.bento-stats {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 32px 24px;
}

.stat-big {
  text-align: center;
  padding: 16px 0;
  width: 100%;
}

.stat-divider {
  width: 60%;
  height: 1px;
  background: var(--border);
}

.stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -.06em;
  background: linear-gradient(135deg, var(--violet-l), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-lbl {
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Location card — 3 cols */
.bento-location {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 32px 24px;
  text-align: center;
}

.location-map {
  position: relative;
  width: 60px;
  height: 60px;
}

.map-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--violet-l);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px var(--violet);
}

.map-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 112, 210, .3);
  transform: translate(-50%, -50%);
  animation: ring-pulse 2s ease-out infinite;
}

.map-ring.r2 {
  width: 56px;
  height: 56px;
  animation-delay: .6s;
  border-color: rgba(0, 112, 210, .12);
}

@keyframes ring-pulse {
  0% {
    transform: translate(-50%, -50%) scale(.7);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

.location-info p {
  font-size: 1rem;
  font-weight: 700;
}

.loc-icon {
  color: var(--violet-l);
  display: flex;
  margin: 0 auto 4px;
}

.loc-sub {
  font-size: .75rem;
  color: var(--muted);
}

/* Quote card — 5 cols */
.bento-quote {
  grid-column: span 5;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.quote-mark {
  font-size: 5rem;
  line-height: .8;
  font-family: Georgia, serif;
  color: rgba(0, 112, 210, .2);
  display: block;
  margin-bottom: 8px;
}

.bento-quote p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
}

/* Links card — 4 cols */
.bento-links {
  grid-column: span 4;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bento-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--subtle);
}

.chip-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chip {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  transition: all .22s;
}

.chip:hover {
  color: var(--white);
  border-color: rgba(0, 112, 210, .4);
  background: rgba(0, 112, 210, .06);
  transform: translateX(4px);
}

/* ═══════════════════════════════════
   SERVICES
═══════════════════════════════════ */
.services-header {
  margin-bottom: 56px;
}

.services-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.04em;
  margin-bottom: 12px;
}

.services-header p {
  color: var(--muted);
  font-size: 1rem;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.svc-item {
  display: grid;
  grid-template-columns: 56px 1fr auto 36px;
  align-items: center;
  gap: 32px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--card);
  cursor: default;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}

.svc-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--violet), var(--violet-l));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .3s var(--ease);
}

.svc-item:hover {
  border-color: rgba(0, 112, 210, .3);
  transform: translateX(4px);
}

.svc-item:hover::before {
  transform: scaleY(1);
}

.svc-item:hover .svc-arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.svc-num {
  font-size: .75rem;
  font-weight: 800;
  color: var(--subtle);
  letter-spacing: .04em;
}

.svc-body {
  display: flex;
  align-items: center;
  gap: 20px;
}

.svc-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: rgba(0, 112, 210, .08);
  border: 1px solid rgba(0, 112, 210, .18);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet-l);
  transition: all .3s;
}

.svc-item:hover .svc-icon {
  background: rgba(31, 190, 205, .12);
  border-color: rgba(31, 190, 205, .35);
}

.svc-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.svc-content p {
  font-size: .875rem;
  color: var(--muted);
}

.svc-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.svc-tags span {
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 10px;
}

.svc-arrow {
  color: var(--violet-l);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: all .3s var(--ease-spring);
  display: flex;
}

/* ═══════════════════════════════════
   SKILLS / TECH GRID
═══════════════════════════════════ */
.skills-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.04em;
  margin-bottom: 56px;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}

.tech-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: default;
}

.tech-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  transition: all .3s var(--ease);
}

.tech-card-inner:hover {
  border-color: rgba(0, 112, 210, .35);
  transform: translateY(-6px);
}

.tech-card-inner:hover .tech-glow {
  opacity: 1;
}

.tech-logo {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-logo svg,
.tech-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Specific logo sizing */
.react-logo {
  width: 48px;
  height: 48px;
}

.nodejs-logo,
.ts-logo,
.php-logo,
.symfony-logo,
.pg-logo,
.figma-logo,
.git-logo,
.html-logo {
  width: 44px;
  height: 44px;
}

.tech-name {
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}

.tech-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, var(--glow, rgba(124, 58, 237, .15)) 0%, transparent 65%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

/* ═══════════════════════════════════
   EXPERIENCE
═══════════════════════════════════ */
.exp-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.04em;
  margin-bottom: 64px;
}

.exp-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.exp-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.exp-row:first-child {
  border-top: 1px solid var(--border);
}

.exp-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 6px;
}

.exp-date {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

.exp-line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, rgba(0, 112, 210, .4), transparent);
  margin-left: 2px;
}

.exp-line.last {
  background: none;
}

.exp-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.exp-company-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.exp-company-logo {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .02em;
  border: 1px solid var(--border);
}

.aiesec {
  background: linear-gradient(135deg, #033C87, #012169);
  color: #FFF;
}

.yonca {
  background: linear-gradient(135deg, #071829, #0d2540);
  color: #1FBECD;
}

.heysengo {
  background: linear-gradient(135deg, #0d1a10, #091f0d);
  color: #36E082;
}

.sau {
  background: linear-gradient(135deg, #0a1628, #0c1e3d);
  color: #0070D2;
}

.exp-company-row h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.exp-company {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--violet-l);
  margin-top: 1px;
}

.exp-badge {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(54, 224, 130, .08);
  border: 1px solid rgba(54, 224, 130, .2);
  border-radius: 100px;
  padding: 3px 10px;
}

.exp-right>p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}

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

.exp-tech span {
  font-size: .72rem;
  font-weight: 600;
  color: var(--subtle);
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 11px;
}

.exp-role {
  margin-top: 24px;
  padding-left: 20px;
  border-left: 2px solid var(--border);
}

.exp-role:first-of-type {
  margin-top: 32px;
}

.role-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.role-title span {
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  padding: 3px 10px;
  background: rgba(255, 255, 255, .05);
  border-radius: 100px;
}

.role-date {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--violet-l);
  margin-bottom: 12px;
}

.role-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.role-bullets li {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
  position: relative;
  padding-left: 16px;
}

.role-bullets li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--violet-l);
  font-weight: bold;
}

.role-p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════
   CONTACT
═══════════════════════════════════ */
.section-contact {
  background: var(--surface);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-headline .section-label {
  margin-bottom: 14px;
}

.contact-headline h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.04em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.grad {
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-l) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-headline>p {
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 36px;
}

.contact-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 18px;
  transition: all .22s;
}

.social-pill:hover {
  color: var(--white);
  border-color: var(--border-h);
  transform: translateY(-2px);
}

.social-icon-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--muted);
  transition: all .22s;
}

.social-icon-btn:hover {
  color: var(--white);
  border-color: var(--border-h);
  transform: translateY(-2px);
}

/* FORM */
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  font-family: var(--font);
  font-size: .9rem;
  color: var(--white);
  outline: none;
  resize: vertical;
  transition: border-color .2s, box-shadow .2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--subtle);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(0, 112, 210, .5);
  box-shadow: 0 0 0 3px rgba(0, 112, 210, .1);
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  margin-top: 24px;
  background: linear-gradient(135deg, var(--violet) 0%, #0057A8 100%);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  font-family: var(--font);
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0, 112, 210, .3);
  transition: all .25s var(--ease);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(31, 190, 205, .35);
}

.btn-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(74, 222, 128, .07);
  border: 1px solid rgba(74, 222, 128, .2);
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 600;
  color: #86efac;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--violet), var(--violet-l));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer p {
  font-size: .8rem;
  color: var(--muted);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--muted);
  transition: all .22s;
}

.footer-socials a:hover {
  color: var(--white);
  border-color: var(--border-h);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .about-bento {
    grid-template-columns: repeat(6, 1fr);
  }

  .bento-bio {
    grid-column: span 6;
  }

  .bento-stats {
    grid-column: span 6;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stat-divider {
    display: none;
  }

  .bento-location {
    grid-column: span 2;
  }

  .bento-quote {
    grid-column: span 4;
  }

  .bento-links {
    grid-column: span 6;
  }

  .bento-links .chip-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .svc-item {
    grid-template-columns: 40px 1fr;
    gap: 20px;
  }

  .svc-tags,
  .svc-arrow {
    display: none;
  }

  .exp-row {
    grid-template-columns: 140px 1fr;
    gap: 32px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .container {
    padding: 0 20px;
  }

  .section {
    padding: 80px 0;
  }

  .about-bento {
    grid-template-columns: 1fr;
  }

  .bento-bio,
  .bento-stats,
  .bento-location,
  .bento-quote,
  .bento-links {
    grid-column: span 1;
  }

  .bento-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .bento-stats {
    flex-direction: row;
    justify-content: space-around;
    padding: 24px;
  }

  .exp-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .exp-left {
    flex-direction: row;
    align-items: center;
  }

  .exp-line {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }

  .desktop-br {
    display: none;
  }

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

  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline {
    padding: 12px 22px;
    font-size: .875rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-h1 {
    font-size: 2.6rem;
  }
}

/* ═══════════════════════════════════
   SAP SPECIFIC ELEMENTS
═══════════════════════════════════ */

/* SAP mini logo pill */
.sap-mini-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 14px;
  border-radius: 3px;
  background: #0070D2;
  color: white;
  font-size: .48rem;
  font-weight: 900;
  letter-spacing: .02em;
  font-family: var(--font);
  flex-shrink: 0;
}

/* ── Journey Section ── */
.journey-header {
  margin-bottom: 48px;
}

.journey-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.04em;
  margin-bottom: 10px;
}

.journey-header p {
  color: var(--muted);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.journey-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}

.journey-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--subtle);
  transition: background .3s;
}

.journey-card.done::before {
  background: var(--green);
}

.journey-card.active::before {
  background: var(--sap-gold);
}

.journey-card.upcoming::before {
  background: var(--subtle);
}

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

.journey-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.jphase-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 4px 10px;
}

.done-badge {
  color: var(--green);
  background: rgba(54, 224, 130, .08);
  border: 1px solid rgba(54, 224, 130, .2);
}

.active-badge {
  color: var(--sap-gold);
  background: rgba(240, 171, 0, .08);
  border: 1px solid rgba(240, 171, 0, .25);
}

.upcoming-badge {
  color: var(--muted);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
}

.jphase-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  color: var(--muted);
}

.active-icon {
  background: rgba(240, 171, 0, .1);
  border-color: rgba(240, 171, 0, .25);
  color: var(--sap-gold);
}

.journey-card.done .jphase-icon {
  background: rgba(54, 224, 130, .08);
  border-color: rgba(54, 224, 130, .2);
  color: var(--green);
}

.journey-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

.journey-card>p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.65;
}

.journey-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.journey-items li {
  font-size: .8rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
}

.journey-items li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--subtle);
  font-size: .7rem;
}

.journey-card.done .journey-items li::before {
  content: '✓';
  color: var(--green);
}

.journey-card.active .journey-items li::before {
  content: '›';
  color: var(--sap-gold);
  font-weight: 700;
}

/* Resources block */
.resources-block {
  padding: 24px 28px;
  background: rgba(0, 112, 210, .04);
  border: 1px solid rgba(0, 112, 210, .12);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.resources-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--violet-l);
  white-space: nowrap;
  flex-shrink: 0;
}

.resources-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.resource-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  transition: all .2s;
}

a.resource-chip:hover {
  color: var(--violet-l);
  border-color: rgba(0, 112, 210, .35);
  background: rgba(0, 112, 210, .06);
}

/* ── Skills Blocks ── */
.skills-block {
  margin-bottom: 56px;
}

.skills-block:last-child {
  margin-bottom: 0;
}

.skills-block-header {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.block-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 5px 14px;
  flex-shrink: 0;
}

.solid-badge {
  color: var(--white);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
}

.learning-badge {
  color: var(--sap-gold);
  background: rgba(240, 171, 0, .08);
  border: 1px solid rgba(240, 171, 0, .25);
}

.skills-block-header p {
  font-size: .875rem;
  color: var(--muted);
}

/* Learning card overlay */
.learning-card {
  position: relative;
}

.learning-tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sap-gold);
  background: rgba(240, 171, 0, .1);
  border: 1px solid rgba(240, 171, 0, .2);
  border-radius: 100px;
  padding: 2px 8px;
}

/* ── Experience subtitle ── */
.exp-subtitle {
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 56px;
  padding: 14px 20px;
  background: rgba(0, 112, 210, .04);
  border: 1px solid rgba(0, 112, 210, .12);
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.exp-subtitle::before {
  content: 'ℹ';
  color: var(--violet-l);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .resources-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .skills-block-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}