/* ═══════════════════════════════════════
   DESIGN TOKENS — Finance-themed palette
   ═══════════════════════════════════════ */

:root {
  --ink: #0f172a;
  --ink-soft: #1e293b;
  --muted: #64748b;
  --line: #e2e8f0;
  --paper: #f8fafc;
  --white: #ffffff;
  --emerald: #059669;
  --emerald-light: #10b981;
  --teal: #0d9488;
  --blue: #2563eb;
  --navy: #1e3a5f;
  --rose: #e11d48;
  --gold: #d97706;
  --green: #16a34a;
  --purple: #7c3aed;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Outfit", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(5, 150, 105, 0.34);
  outline-offset: 4px;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, p, strong {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 380px;
  font-size: clamp(2.8rem, 4.2vw, 4rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.25;
}

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(18px, -24px) scale(1.06); }
  66%      { transform: translate(-12px, 14px) scale(0.95); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; }
  50%      { opacity: 1; }
}

@keyframes shimmerSlide {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.4); opacity: 0.4; }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes barGrow {
  from { height: 0; }
  to   { height: var(--height); }
}

@keyframes fillWidth {
  from { width: 0; }
  to   { width: var(--fill); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

/* === Scroll reveal === */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  transition:
    padding 280ms var(--ease),
    color 180ms ease,
    background-color 280ms var(--ease),
    border-color 180ms ease,
    box-shadow 280ms var(--ease);
}

.site-header[data-scrolled="true"] {
  padding-block: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.brand-mark,
nav {
  display: flex;
  align-items: center;
}

.brand-mark {
  gap: 12px;
  min-width: 0;
  font-weight: 900;
}

.brand-logo {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--emerald), var(--teal) 58%, var(--blue));
  box-shadow: 0 16px 34px rgba(5, 150, 105, 0.28);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: transform 0.3s var(--ease);
}

.brand-mark:hover .brand-logo {
  transform: scale(1.06) rotate(-2deg);
}

.brand-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

nav {
  gap: clamp(14px, 2.4vw, 30px);
}

.nav-link {
  position: relative;
  color: currentColor;
  font-size: 0.92rem;
  font-weight: 700;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--teal));
  border-radius: 2px;
  transition: width 0.35s var(--ease);
}

.nav-link:hover {
  opacity: 1;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  opacity: 1;
}

.nav-link.active::after {
  width: 100%;
}

/* ═══════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════ */

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  min-height: 100vh;
  padding: 128px clamp(20px, 5vw, 72px) clamp(42px, 5vw, 64px);
  color: var(--white);
  overflow: hidden;
  background: linear-gradient(145deg, #0f172a 0%, #1a2744 40%, #0c2d3e 70%, #0f2818 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(5, 150, 105, 0.12), transparent),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(37, 99, 235, 0.08), transparent),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(13, 148, 136, 0.06), transparent);
  pointer-events: none;
}

/* Hero grid pattern */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

/* Left content column */

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.hero-inner {
  width: min(480px, 100%);
  padding-bottom: 0;
}

/* Right visual column */

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

/* ERP Dashboard Card */

.hero-erp-card {
  width: 100%;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  transition: transform 0.5s var(--ease), box-shadow 0.5s ease;
  animation: float 6s ease-in-out infinite;
}

.hero-erp-card:hover {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.erp-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.erp-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--emerald-light);
  animation: dotPulse 2s ease-in-out infinite;
}

.erp-card-body {
  padding: 22px;
}

.erp-module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.erp-module {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease);
}

.erp-module:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.erp-module-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(5, 150, 105, 0.15);
  color: var(--emerald-light);
  transition: transform 0.3s var(--ease);
}

.erp-module:hover .erp-module-icon {
  transform: scale(1.1);
}

.erp-module-icon.accent-blue {
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
}

.erp-module-icon.accent-gold {
  background: rgba(217, 119, 6, 0.15);
  color: #fbbf24;
}

.erp-module-icon.accent-rose {
  background: rgba(225, 29, 72, 0.15);
  color: #fb7185;
}

.erp-module-icon.accent-green {
  background: rgba(22, 163, 74, 0.15);
  color: #4ade80;
}

.erp-module-icon.accent-purple {
  background: rgba(124, 58, 237, 0.15);
  color: #a78bfa;
}

.erp-module-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.erp-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.erp-chart-bar {
  flex: 1;
  height: var(--height);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, rgba(5, 150, 105, 0.3), rgba(5, 150, 105, 0.6));
  transition: background 0.3s ease;
  animation: barGrow 1.2s var(--ease) forwards;
  animation-delay: calc(var(--delay, 0) * 0.1s + 1s);
}

.erp-chart-bar.active {
  background: linear-gradient(to top, var(--emerald), var(--emerald-light));
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.4);
}

.erp-chart-bar:hover {
  background: linear-gradient(to top, var(--emerald), var(--emerald-light));
}

/* Staggered entrance animations */

.hero-animate {
  opacity: 0;
  animation: heroFadeUp 0.7s var(--ease) forwards;
  animation-delay: calc(var(--delay, 0) * 0.12s + 0.25s);
}

/* Floating ambient orbs */

.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: orbFloat 14s ease-in-out infinite;
  will-change: transform;
}

.orb-1 {
  width: 300px;
  height: 300px;
  top: 8%;
  left: 5%;
  background: rgba(5, 150, 105, 0.18);
  animation-duration: 16s;
}

.orb-2 {
  width: 220px;
  height: 220px;
  top: 55%;
  right: 12%;
  background: rgba(37, 99, 235, 0.12);
  animation-duration: 18s;
  animation-delay: -4s;
}

.orb-3 {
  width: 180px;
  height: 180px;
  bottom: 15%;
  left: 30%;
  background: rgba(13, 148, 136, 0.10);
  animation-duration: 20s;
  animation-delay: -8s;
}

.orb-4 {
  width: 140px;
  height: 140px;
  top: 25%;
  right: 35%;
  background: rgba(217, 119, 6, 0.06);
  animation-duration: 22s;
  animation-delay: -6s;
}

/* Glow accent line */

.hero-glow-line {
  position: absolute;
  left: -18px;
  top: 0;
  width: 3px;
  height: 80px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--emerald), var(--teal));
  box-shadow: 0 0 18px rgba(5, 150, 105, 0.5);
  animation: glowPulse 3s ease-in-out infinite;
  z-index: 1;
}

/* Gradient text */

.hero-name-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 30%, var(--emerald-light) 70%, var(--teal) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
}

/* Eyebrow dot */

.eyebrow {
  margin: 0 0 14px;
  color: var(--emerald);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px rgba(5, 150, 105, 0.6);
  vertical-align: middle;
  animation: glowPulse 2s ease-in-out infinite;
}

/* Scroll indicator */

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  inset-inline-end: clamp(20px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-text {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.scroll-line {
  width: 2px;
  height: 28px;
  border-radius: 2px;
  background: var(--emerald);
  transform-origin: top;
  animation: scrollBounce 2s ease-in-out infinite;
}

/* Hero typography */

.hero-role {
  margin: 18px 0 0;
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

.hero-summary {
  max-width: 400px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.96rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.95rem;
  transition:
    transform 260ms var(--ease),
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 260ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.2);
}

.button.primary {
  position: relative;
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--emerald) 0%, var(--teal) 100%);
  overflow: hidden;
}

.button.primary:hover {
  background: linear-gradient(135deg, var(--teal) 0%, var(--emerald) 100%);
  box-shadow: 0 14px 36px rgba(5, 150, 105, 0.35);
}

.hero-cta-shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.14) 46%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.14) 54%,
    transparent 70%
  );
  animation: shimmerSlide 3.5s ease-in-out infinite;
  pointer-events: none;
}

.cta-arrow {
  display: inline-flex;
  transition: transform 260ms var(--ease);
}

.button.primary:hover .cta-arrow {
  transform: translateX(4px);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.12);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(5, 150, 105, 0.4);
}

/* ═══════════════════════════════════════
   HERO METRICS
   ═══════════════════════════════════════ */

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(780px, 100%);
  margin-top: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}

.hero-metrics:hover {
  transform: translateY(-2px);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-metrics div {
  min-height: 92px;
  padding: 22px 24px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color 0.3s ease;
}

.hero-metrics div:hover {
  background: rgba(5, 150, 105, 0.06);
}

.hero-metrics div:last-child {
  border-inline-end: 0;
}

.hero-metrics strong {
  display: block;
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--white), var(--emerald-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  font-size: 0.82rem;
}

/* ═══════════════════════════════════════
   SECTION SHARED
   ═══════════════════════════════════════ */

.about-section,
.experience-section,
.skills-section,
.education-section,
.contact-section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 72px);
  scroll-margin-top: 86px;
}

.section-kicker {
  max-width: 980px;
  margin-bottom: 48px;
}

.section-kicker.compact {
  max-width: 820px;
}

.about-section .eyebrow,
.contact-section .eyebrow,
.education-section .eyebrow {
  color: var(--emerald);
}

/* ═══════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════ */

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 22px;
  align-items: stretch;
}

.about-card,
.capability-list article,
.skill-card,
.contact-panel,
.education-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.about-card:hover,
.capability-list article:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

.about-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(145deg, rgba(5, 150, 105, 0.04), transparent 58%),
    var(--white);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 150, 105, 0.06), transparent 70%);
  pointer-events: none;
}

.role-pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 20px;
  padding: 10px 18px;
  color: var(--white);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.25);
}

.about-card p,
.capability-list p,
.skill-card p,
.contact-copy p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

/* About badges */

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.badge:hover {
  border-color: rgba(5, 150, 105, 0.3);
  background: rgba(5, 150, 105, 0.04);
}

.badge svg {
  color: var(--emerald);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   CAPABILITY LIST
   ═══════════════════════════════════════ */

.capability-list {
  display: grid;
  gap: 14px;
}

.capability-list article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 18px;
  padding: 26px;
  align-items: start;
}

.cap-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--emerald);
  border: 1px solid rgba(5, 150, 105, 0.18);
  border-radius: 12px;
  background: rgba(5, 150, 105, 0.06);
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease);
}

.cap-icon-blue {
  color: var(--blue);
  border-color: rgba(37, 99, 235, 0.18);
  background: rgba(37, 99, 235, 0.06);
}

.cap-icon-gold {
  color: var(--gold);
  border-color: rgba(217, 119, 6, 0.18);
  background: rgba(217, 119, 6, 0.06);
}

.capability-list article:hover .cap-icon {
  background: rgba(5, 150, 105, 0.12);
  border-color: rgba(5, 150, 105, 0.3);
  transform: scale(1.06);
}

.capability-list article:hover .cap-icon-blue {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
}

.capability-list article:hover .cap-icon-gold {
  background: rgba(217, 119, 6, 0.12);
  border-color: rgba(217, 119, 6, 0.3);
}

.cap-content h3 {
  margin-bottom: 4px;
}

.capability-list p {
  margin: 0;
}

/* ═══════════════════════════════════════
   EXPERIENCE SECTION
   ═══════════════════════════════════════ */

.experience-section {
  position: relative;
  color: var(--white);
  background: linear-gradient(145deg, #0f172a, #162033 50%, #0c2d3e 80%, #0f2818 100%);
  overflow: hidden;
}

.experience-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 50% at 80% 20%, rgba(5, 150, 105, 0.08), transparent),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(37, 99, 235, 0.06), transparent);
  pointer-events: none;
}

.experience-section .eyebrow {
  color: rgba(16, 185, 129, 0.9);
}

.experience-section h2 {
  color: var(--white);
}

/* Timeline */

.timeline {
  position: relative;
  max-width: 820px;
  margin-bottom: 56px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 24px;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6px;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.2), 0 0 16px rgba(5, 150, 105, 0.3);
  flex-shrink: 0;
}

.timeline-line {
  width: 2px;
  flex: 1;
  margin-top: 8px;
  background: linear-gradient(to bottom, rgba(5, 150, 105, 0.4), transparent);
  border-radius: 2px;
}

.timeline-card {
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.timeline-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.timeline-header h3 {
  color: var(--white);
  font-size: 1.15rem;
}

.timeline-company {
  margin: 6px 0 0;
  color: var(--emerald-light);
  font-size: 0.92rem;
  font-weight: 700;
}

.timeline-date {
  display: inline-flex;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  white-space: nowrap;
}

.timeline-achievements {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-achievements li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.94rem;
  line-height: 1.6;
}

.timeline-achievements li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--emerald-light);
}

/* Integrations */

.integrations-block {
  position: relative;
  z-index: 1;
}

.integrations-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.integrations-title svg {
  color: var(--emerald-light);
}

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

.integration-card {
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.35s var(--ease), background 0.3s ease, border-color 0.3s ease, box-shadow 0.35s ease;
}

.integration-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.integration-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 14px;
  color: var(--emerald-light);
  background: rgba(5, 150, 105, 0.12);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.15);
  transition: transform 0.3s var(--ease);
}

.integration-card:hover .integration-icon {
  transform: translateY(-3px) scale(1.05);
}

.integration-icon.accent-green {
  color: #4ade80;
  background: rgba(22, 163, 74, 0.12);
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.15);
}

.integration-icon.accent-purple {
  color: #a78bfa;
  background: rgba(124, 58, 237, 0.12);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.15);
}

.integration-card h4 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 800;
}

.integration-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   SKILLS SECTION
   ═══════════════════════════════════════ */

.skills-section {
  background: var(--paper);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.skill-card {
  position: relative;
  min-height: 240px;
  padding: 32px;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s ease;
}

.skill-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(5, 150, 105, 0.02), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.skill-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 70px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(5, 150, 105, 0.08);
}

.skill-card:hover::before {
  opacity: 1;
}

.skill-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  color: var(--white);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.25);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.skill-card:hover .skill-icon {
  transform: translateY(-3px) scale(1.05);
}

.skill-icon.gold {
  background: linear-gradient(135deg, var(--gold), #f59e0b);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.25);
}

.skill-icon.green {
  background: linear-gradient(135deg, var(--green), #22c55e);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.25);
}

.skill-icon.rose {
  background: linear-gradient(135deg, var(--rose), #f43f5e);
  box-shadow: 0 8px 24px rgba(225, 29, 72, 0.25);
}

.skill-icon.purple {
  background: linear-gradient(135deg, var(--purple), #8b5cf6);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.25);
}

.skill-card h3 {
  color: var(--ink);
  margin-bottom: 6px;
}

.skill-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Skill progress bar */

.skill-bar {
  margin-top: 18px;
  height: 6px;
  border-radius: 4px;
  background: var(--paper);
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  width: var(--fill);
  border-radius: 4px;
  background: linear-gradient(90deg, var(--emerald), var(--teal));
  animation: fillWidth 1.5s var(--ease) forwards;
  animation-play-state: paused;
}

.skill-fill.gold {
  background: linear-gradient(90deg, var(--gold), #f59e0b);
}

.skill-fill.green {
  background: linear-gradient(90deg, var(--green), #22c55e);
}

.skill-fill.rose {
  background: linear-gradient(90deg, var(--rose), #f43f5e);
}

.skill-fill.purple {
  background: linear-gradient(90deg, var(--purple), #8b5cf6);
}

.is-visible .skill-fill {
  animation-play-state: running;
}

/* ═══════════════════════════════════════
   EDUCATION SECTION
   ═══════════════════════════════════════ */

.education-section {
  background: var(--white);
}

.education-card {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 640px;
  padding: 32px 36px;
}

.education-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

.education-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  box-shadow: 0 12px 28px rgba(5, 150, 105, 0.25);
}

.education-content h3 {
  font-size: 1.2rem;
  color: var(--ink);
}

.education-spec {
  margin: 6px 0 0;
  color: var(--emerald);
  font-weight: 700;
  font-size: 0.94rem;
}

.education-uni {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ═══════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════ */

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 40px;
  align-items: start;
  background: var(--paper);
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-copy p {
  max-width: 580px;
  font-size: 1.05rem;
}

.contact-panel {
  overflow: hidden;
  border-radius: var(--radius);
}

.contact-panel > a {
  display: grid;
  grid-template-columns: 46px minmax(0, 0.78fr) minmax(0, 1.16fr) 24px;
  gap: 14px;
  align-items: center;
  min-height: 80px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    padding-left 0.35s var(--ease);
}

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

.contact-panel > a:hover {
  color: var(--emerald);
  background: linear-gradient(90deg, #ecfdf5, #f0fdf4);
  padding-left: 28px;
}

.contact-panel span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--emerald);
  border: 1px solid rgba(5, 150, 105, 0.18);
  border-radius: 12px;
  background: rgba(5, 150, 105, 0.06);
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.3s var(--ease);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-panel > a:hover .contact-icon {
  color: var(--white);
  border-color: var(--emerald);
  background: var(--emerald);
  transform: scale(1.06);
}

.contact-label {
  min-width: 0;
}

.contact-panel strong {
  text-align: right;
  font-size: 0.96rem;
}

.contact-arrow {
  display: grid;
  place-items: center;
  color: var(--line);
  transition: color 0.25s ease, transform 0.3s var(--ease);
}

.contact-arrow svg {
  fill: none;
  stroke: currentColor;
}

.contact-panel > a:hover .contact-arrow {
  color: var(--emerald);
  transform: translateX(3px);
}

/* LinkedIn icon */
.linkedin-icon {
  color: #0077B5;
  border-color: rgba(0, 119, 181, 0.18);
  background: rgba(0, 119, 181, 0.06);
}

.linkedin-icon svg {
  fill: currentColor;
  stroke: none;
}

.contact-panel > a:hover .linkedin-icon {
  color: var(--white);
  border-color: #0077B5;
  background: #0077B5;
}

/* Phone + WhatsApp combined rows */

.contact-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 0.78fr) minmax(0, 1.16fr) 46px;
  gap: 14px;
  align-items: center;
  min-height: 80px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row .contact-icon {
  width: 44px;
  height: 44px;
}

.contact-row .contact-icon:hover {
  transform: scale(1.1);
}

.contact-row .contact-icon:hover:not(.wa-icon) {
  color: var(--white);
  border-color: var(--emerald);
  background: var(--emerald);
}

.wa-icon {
  color: #25D366;
  border-color: rgba(37, 211, 102, 0.22);
  background: rgba(37, 211, 102, 0.08);
}

.wa-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}

.wa-icon:hover {
  color: var(--white) !important;
  border-color: #25D366 !important;
  background: #25D366 !important;
}

.contact-row .contact-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-row strong {
  text-align: right;
  font-size: 1rem;
  font-weight: 800;
}

/* Contact location */

.contact-location {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 14px;
  align-items: center;
  min-height: 80px;
  padding: 20px 24px;
}

.contact-location .contact-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-location strong {
  font-size: 0.92rem;
  font-weight: 700;
  text-align: right;
  color: var(--ink-soft);
}

.contact-location .contact-icon svg {
  fill: currentColor;
  stroke: none;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

footer {
  background: linear-gradient(145deg, var(--ink), #162033);
  color: var(--white);
  padding: 0 clamp(20px, 5vw, 72px);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 40px;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-logo {
  width: 38px;
  height: 38px;
  font-size: 0.75rem;
}

.footer-name {
  margin: 0;
  font-weight: 800;
  font-size: 1rem;
}

.footer-title {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  font-weight: 600;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  font-size: 0.88rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-copy {
  margin: 0;
  width: 100%;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  font-weight: 500;
}

/* ═══════════════════════════════════════
   FLOATING ACTIONS (BACK TO TOP & WA)
   ═══════════════════════════════════════ */

.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 50;
  display: flex;
  gap: 12px;
  align-items: center;
}

.back-to-top,
.floating-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(5, 150, 105, 0.4);
  transition:
    opacity 0.3s var(--ease),
    visibility 0.3s,
    transform 0.3s var(--ease),
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.back-to-top {
  background: var(--emerald);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(13, 148, 136, 0.4);
}

.floating-wa {
  background: #25D366;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}

.floating-wa:hover {
  background: #1EBE5D;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.6);
}

.floating-wa svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (≤ 920px)
   ═══════════════════════════════════════ */

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 108px;
    padding-bottom: 40px;
    gap: 32px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-erp-card {
    max-width: 400px;
  }

  .hero-glow-line {
    display: none;
  }

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

  .about-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
  }

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

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

  .timeline-card {
    padding: 22px 24px;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 680px)
   ═══════════════════════════════════════ */

@media (max-width: 680px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-name {
    max-width: 148px;
  }

  nav {
    gap: 10px;
  }

  .nav-link {
    font-size: 0.82rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 100px 18px 28px;
    gap: 24px;
  }

  .hero-erp-card {
    max-width: 340px;
  }

  .erp-module-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .erp-module {
    padding: 10px 6px;
  }

  .hero-glow-line {
    display: none;
  }

  .hero-scroll-hint {
    display: none;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .hero-metrics div {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .about-section,
  .experience-section,
  .skills-section,
  .education-section,
  .contact-section {
    padding-inline: 18px;
  }

  .about-card {
    min-height: 320px;
    padding: 24px;
  }

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

  .skill-card {
    min-height: auto;
    padding: 24px;
  }

  .capability-list article {
    padding: 20px;
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .cap-icon {
    width: 42px;
    height: 42px;
  }

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

  .timeline-item {
    grid-template-columns: 24px 1fr;
    gap: 16px;
  }

  .timeline-card {
    padding: 18px 20px;
  }

  .timeline-header {
    flex-direction: column;
    gap: 10px;
  }

  .education-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .contact-panel > a {
    grid-template-columns: 44px 1fr;
    gap: 4px 12px;
  }

  .contact-panel > a > .contact-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .contact-panel > a .contact-label {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
  }

  .contact-panel > a strong {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    text-align: left;
  }

  .contact-row {
    grid-template-columns: 44px 1fr 44px;
    gap: 12px;
  }

  .contact-row .contact-label,
  .contact-row strong {
    grid-column: 2;
    text-align: left;
  }

  .contact-location {
    grid-template-columns: 44px 1fr;
    gap: 4px 12px;
  }

  .contact-location .contact-label {
    grid-column: 2;
    grid-row: 1;
  }

  .contact-location strong {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
  }

  .contact-arrow {
    display: none;
  }

  .contact-panel strong {
    text-align: left;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }

  .footer-brand {
    flex-direction: column;
    gap: 10px;
  }

  .footer-nav {
    justify-content: center;
  }

  .floating-actions {
    bottom: 20px;
    right: 20px;
  }

  .back-to-top,
  .floating-wa {
    width: 44px;
    height: 44px;
  }

  .floating-wa svg {
    width: 22px;
    height: 22px;
  }
}
