:root {
  --bg: #050505;
  --bg-soft: #0d0d10;
  --panel: rgba(18, 18, 20, 0.72);
  --panel-strong: rgba(18, 18, 20, 0.9);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --text: #f5f5f5;
  --muted: #b7b7bb;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.14);
  --primary: #ff2247;
  --primary-2: #a5001e;
  --gold: #ffd36b;
  --wa: #25d366;
  --wa-2: #128c7e;
  --li: #0a66c2;
  --li-2: #004182;
  --mail: #0078d4;
  --mail-2: #005a9e;
  --ig: #e1306c;
  --ig-2: #833ab4;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.24);
  --radius: 26px;
  --radius-sm: 18px;
  --max: 1180px;
  --cursor-x: 50vw;
  --cursor-y: 50vh;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(255, 34, 71, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 10%,
      rgba(255, 145, 77, 0.08),
      transparent 22%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(255, 34, 71, 0.08),
      transparent 25%
    ),
    linear-gradient(180deg, #050505 0%, #090909 45%, #050505 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  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: 42px 42px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
  opacity: 0.22;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle 240px at var(--cursor-x) var(--cursor-y),
    rgba(255, 34, 71, 0.11),
    transparent 70%
  );
  z-index: 0;
  opacity: 0.95;
  transition: opacity 0.25s ease;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

.bg-orb.orb-1 {
  width: 320px;
  height: 320px;
  top: 120px;
  left: -80px;
  background: rgba(255, 34, 71, 0.18);
  animation: floatOrb 10s ease-in-out infinite;
}

.bg-orb.orb-2 {
  width: 260px;
  height: 260px;
  right: -60px;
  top: 55%;
  background: rgba(255, 163, 87, 0.12);
  animation: floatOrb 13s ease-in-out infinite reverse;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-24px) translateX(18px);
  }
}

.page-shell {
  position: relative;
  z-index: 1;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(255, 34, 71, 0.08), transparent 28%),
    linear-gradient(180deg, #070707 0%, #050505 100%);
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

.site-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  width: 92px;
  height: 92px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 34, 71, 0.24);
  background: linear-gradient(135deg, #17171a 0%, #0d0d10 55%, #28040b 100%);
  box-shadow:
    0 0 40px rgba(255, 34, 71, 0.16),
    inset 0 0 20px rgba(255, 255, 255, 0.06);
  font-weight: 800;
  font-size: 1.65rem;
  letter-spacing: -0.06em;
  animation: loaderPulse 1.8s ease-in-out infinite;
}

.loader-mark::before {
  content: "WH";
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #ffffff 0%, #ff95a3 55%, #ff2247 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.loader-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(255, 255, 255, 0.12),
      transparent 28%
    ),
    radial-gradient(circle at 70% 80%, rgba(255, 34, 71, 0.18), transparent 34%);
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: white;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
  backdrop-filter: blur(14px);
}

.menu-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 34, 71, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: white;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(8, 8, 9, 0.7);
  border-bottom: 1px solid rgba(255, 34, 71, 0.16);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

header.scrolled {
  background: rgba(10, 10, 11, 0.92);
  border-bottom-color: rgba(255, 34, 71, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1d 0%, #0d0d10 45%, #28040b 100%);
  border: 1px solid rgba(255, 34, 71, 0.26);
  box-shadow:
    0 0 24px rgba(255, 34, 71, 0.18),
    inset 0 0 18px rgba(255, 255, 255, 0.05);
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.06em;
  animation: logoPulse 4.2s ease-in-out infinite;
}

.logo-mark::before {
  content: "WH";
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #ffffff 0%, #ff95a3 55%, #ff2247 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(255, 34, 71, 0.12);
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(255, 255, 255, 0.12),
      transparent 28%
    ),
    radial-gradient(circle at 70% 80%, rgba(255, 34, 71, 0.16), transparent 34%);
  z-index: 1;
}

@keyframes logoPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 0 24px rgba(255, 34, 71, 0.18),
      inset 0 0 18px rgba(255, 255, 255, 0.05);
  }
  50% {
    transform: translateY(-2px) scale(1.03);
    box-shadow:
      0 0 30px rgba(255, 34, 71, 0.28),
      inset 0 0 18px rgba(255, 255, 255, 0.08);
  }
}

.brand-text h1 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: 0.4px;
  color: var(--primary);
}

.brand-text small {
  display: block;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.68rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

nav a {
  position: relative;
  color: #ededed;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

nav a:hover,
nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
}

nav a:hover::after,
nav a.active::after {
  transform: scaleX(1);
}

section {
  padding: 96px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #f2d8dd;
  font-size: 0.88rem;
  margin-bottom: 20px;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffbf6b, var(--primary));
  box-shadow: 0 0 12px rgba(255, 34, 71, 0.45);
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: 44px;
}

.hero-copy,
.hero-visual {
  opacity: 0;
  transform: translateY(24px);
  animation: heroReveal 0.9s ease forwards;
  
}

.hero-visual {
  animation-delay: 0.15s;
  width: 100%;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tag-row,
.hero-actions,
.stat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  align-items: stretch;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 34, 71, 0.09);
  border: 1px solid rgba(255, 34, 71, 0.2);
  color: #f3f3f5;
  font-size: 0.92rem;
  backdrop-filter: blur(12px);
}

.tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
  margin: 18px 0;
  letter-spacing: -0.045em;
  max-width: 720px;
}

.highlight {
  background: linear-gradient(135deg, #ffffff 0%, #ff808e 55%, #ff2348 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p,
.section-subtitle {
  color: #cdced2;
  font-size: 1.03rem;
}

.hero p {
  margin: 0 0 12px;
  max-width: 670px;
}

.btn,
.mini-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  color: white;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    filter 0.25s ease;
  backdrop-filter: blur(14px);
}

.btn:hover,
.mini-contact:hover,
.contact-link:hover,
.footer-social a:hover,
.visual-card:hover {
  transform: translateY(-4px);
  filter: saturate(1.04);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--wa), var(--wa-2));
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.24);
}
.btn-linkedin {
  background: linear-gradient(135deg, var(--li), var(--li-2));
  box-shadow: 0 14px 36px rgba(10, 102, 194, 0.24);
}

.hero-actions svg,
.mini-contact svg,
.contact-icon svg,
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.mini-contact {
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.mini-contact.outlook {
  background: linear-gradient(
    135deg,
    rgba(0, 120, 212, 0.18),
    rgba(0, 90, 158, 0.2)
  );
  border-color: rgba(0, 120, 212, 0.28);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.stat-grid {
  margin-top: 24px;
}

.stat-card {
  min-width: 150px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.stat-card strong {
  display: block;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

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

.stat-card {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    filter 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 34, 71, 0.24);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.24);
  filter: saturate(1.04);
}

a.visual-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.hero-visual {
  position: relative;
  perspective: 1200px;
}

.hero-video {
  width: 100%;
}

.hero-card {
  position: relative;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 34, 71, 0.12),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid rgba(255, 34, 71, 0.2);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.18s ease;
  backdrop-filter: blur(18px);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.12),
    transparent 30%,
    transparent 70%,
    rgba(255, 34, 71, 0.08)
  );
  pointer-events: none;
}

.profile-stage {
  position: relative;
  border-radius: 22px;
  min-height: 400px;
  overflow: hidden;
  background:
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    ),
    radial-gradient(
      circle at top,
      rgba(255, 34, 71, 0.26),
      rgba(255, 255, 255, 0.02) 48%
    ),
    linear-gradient(180deg, #161618 0%, #0d0d0f 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  backdrop-filter: blur(16px);
}

.profile-stage::before,
.profile-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.7;
}

.profile-stage::before {
  width: 180px;
  height: 180px;
  background: rgba(255, 34, 71, 0.14);
  top: 8%;
  left: 10%;
  animation: pulseSoft 6s ease-in-out infinite;
}

.profile-stage::after {
  width: 220px;
  height: 220px;
  background: rgba(255, 187, 106, 0.12);
  right: 8%;
  bottom: 6%;
  animation: pulseSoft 7s ease-in-out infinite reverse;
}

@keyframes pulseSoft {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.72;
  }
}

.profile-placeholder {
  position: relative;
  z-index: 1;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  min-height: 360px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.profile-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.03) contrast(1.04);
  transform: scale(1.02);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-title {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 10px;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.visual-grid,
.about-grid,
.contact-channels {
  display: grid;
  gap: 22px;
}

.visual-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.about-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-channels {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.visual-card,
.about-box,
.contact-box {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.visual-card {
  min-height: 320px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  isolation: isolate;
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12),
    transparent 30%,
    transparent 70%,
    rgba(255, 34, 71, 0.08)
  );
  z-index: 2;
  pointer-events: none;
  opacity: 0.7;
}

.visual-card:hover {
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.34);
  border-color: rgba(255, 34, 71, 0.22);
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.68) saturate(1.02);
  transform: scale(1);
  transition:
    transform 0.6s ease,
    filter 0.35s ease;
}

.visual-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.73) saturate(1.05);
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 4, 6, 0.04),
    rgba(4, 4, 6, 0.28) 45%,
    rgba(4, 4, 6, 0.88) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.visual-card-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 22px;
}

.visual-card-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}

.visual-card h3 {
  margin: 0 0 8px;
  color: white;
  font-size: 1.22rem;
  line-height: 1.12;
}

.visual-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.96rem;
}

.project-preview-card {
  min-height: 420px;
}

.project-preview-wrap {
  position: absolute;
  inset: 18px 18px 96px 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 12, 14, 0.92);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.26);
  z-index: 2;
}

.project-browser-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  backdrop-filter: blur(10px);
}

.project-browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.project-browser-url {
  margin-left: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.project-preview-image {
  height: calc(100% - 38px);
  width: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: brightness(0.9) saturate(1.04);
  transition: transform 0.7s ease;
}

.project-preview-card:hover .project-preview-image {
  transform: scale(1.04);
}

.project-preview-card::after {
  background: linear-gradient(
    180deg,
    rgba(4, 4, 6, 0.02),
    rgba(4, 4, 6, 0.12) 40%,
    rgba(4, 4, 6, 0.88) 100%
  );
}

.project-preview-card .visual-card-content {
  padding-top: 110px;
}

.about-box,
.contact-box {
  padding: 26px;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.about-box:hover,
.contact-box:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 34, 71, 0.24);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.3);
}

.about-box h3 {
  margin: 0 0 10px;
  color: white;
  font-size: 1.18rem;
}
.about-box p,
.contact-box p,
li {
  color: #c7c8cd;
  margin: 0;
}

ul.clean-list {
  padding-left: 18px;
  display: grid;
  gap: 10px;
  margin: 0;
}

.contact-box {
  text-align: center;
  background: linear-gradient(
    180deg,
    rgba(255, 34, 71, 0.1),
    rgba(255, 255, 255, 0.04)
  );
  border-color: rgba(255, 34, 71, 0.18);
}

.contact-channels {
  margin-top: 26px;
  text-align: left;
  align-items: stretch;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  text-decoration: none;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  min-height: 92px;
  height: 100%;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  backdrop-filter: blur(16px);
}

.contact-link.whatsapp {
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.18),
    rgba(18, 140, 126, 0.22)
  );
  border-color: rgba(37, 211, 102, 0.28);
}
.contact-link.linkedin {
  background: linear-gradient(
    135deg,
    rgba(10, 102, 194, 0.18),
    rgba(0, 65, 130, 0.24)
  );
  border-color: rgba(10, 102, 194, 0.3);
}
.contact-link.outlook {
  background: linear-gradient(
    135deg,
    rgba(0, 120, 212, 0.18),
    rgba(0, 90, 158, 0.24)
  );
  border-color: rgba(0, 120, 212, 0.3);
}
.contact-link.instagram {
  background: linear-gradient(
    135deg,
    rgba(225, 48, 108, 0.18),
    rgba(193, 53, 132, 0.24)
  );
  border-color: rgba(225, 48, 108, 0.35);
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
  color: white;
}

.contact-info span {
  display: block;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.84);
  word-break: break-word;
}

footer {
  padding: 0 0 36px;
  color: var(--muted);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  backdrop-filter: blur(14px);
}

.footer-social a.instagram {
  background: linear-gradient(
    135deg,
    rgba(225, 48, 108, 0.18),
    rgba(193, 53, 132, 0.24)
  );
  border-color: rgba(225, 48, 108, 0.35);
}

.footer-inner p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

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

.delay-1 {
  transition-delay: 0.08s;
}
.delay-2 {
  transition-delay: 0.16s;
}
.delay-3 {
  transition-delay: 0.24s;
}
.delay-4 {
  transition-delay: 0.32s;
}

@media (max-width: 980px) {
  .hero,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .hero-visual {
    order: -1;
  }
}

.about-photo-stage {
  min-height: 420px;
}

@media (max-width: 760px) {
  .header-inner {
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 12px;
  }

  .brand {
    width: auto;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 11, 0.92);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  }

  nav.open {
    display: flex;
  }

  nav a {
    width: 100%;
    text-align: center;
    padding: 12px 14px;
    font-size: 0.98rem;
  }

  section {
    padding: 76px 0;
  }
  .hero {
    gap: 28px;
  }
  .hero-card {
    padding: 18px;
  }
  .profile-placeholder {
    min-height: 300px;
  }
  .stat-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 0;
  }
  .contact-channels {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .container,
  .footer-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand {
    width: auto;
    justify-content: flex-start;
  }

  .brand-text h1 {
    font-size: 1.12rem;
  }
  .brand-text small {
    font-size: 0.58rem;
    letter-spacing: 1.1px;
  }
  .logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .hero h2 {
    font-size: 1.9rem;
    line-height: 1.12;
  }
  .hero p,
  .section-subtitle {
    font-size: 0.98rem;
  }
  .tag-row,
  .hero-actions,
  .stat-grid {
    gap: 10px;
  }
  .tag {
    font-size: 0.84rem;
    padding: 8px 12px;
  }
  .btn,
  .mini-contact {
    width: 100%;
  }
  .profile-stage {
    padding: 12px;
    min-height: auto;
    display: grid;
    gap: 12px;
  }
  .profile-placeholder {
    width: 100%;
    height: auto;
    min-height: 240px;
  }
  .visual-grid,
  .about-grid,
  .contact-channels {
    grid-template-columns: 1fr;
  }
  .stat-card {
    flex: 1 1 100%;
  }
  .footer-inner {
    justify-content: center;
    text-align: center;
  }
  body::after {
    opacity: 0.45;
  }
}

nav a {
  font-size: 0.85rem;
  padding: 6px 8px;
}

.header-inner {
  gap: 10px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  body::after {
    display: none !important;
  }
}
