/* ═══════════════════════════════════════════════════════════
   ARYAN KASHYAP — PREMIUM PORTFOLIO
   Design System: Dark luxury with cyan/blue accent palette
   Fonts: Manrope (body) + Sora (headings) + IBM Plex Mono (accents)
═══════════════════════════════════════════════════════════ */

/* ─── Design Tokens ──────────────────────────────────────── */
:root {
  --bg:            #040810;
  --bg-1:          #070e1c;
  --bg-2:          #0b1525;
  --surface:       rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --border:        rgba(255, 255, 255, 0.07);
  --border-hover:  rgba(100, 210, 255, 0.25);

  --accent:        #38d9f5;        /* cyan */
  --accent-2:      #4f90ff;        /* blue */
  --accent-warm:   #a78bfa;        /* violet – used sparingly */
  --accent-glow:   rgba(56, 217, 245, 0.18);
  --accent-glow-2: rgba(79, 144, 255, 0.14);

  --text:          #e8edf5;
  --text-muted:    #8194af;
  --text-faint:    #576b86;

  --font-body:     'Manrope', -apple-system, sans-serif;
  --font-heading:  'Sora', 'Manrope', sans-serif;
  --font-mono:     'IBM Plex Mono', 'Courier New', monospace;

  --radius-sm:     8px;
  --radius:        16px;
  --radius-lg:     24px;
  --radius-xl:     32px;

  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.76, 0, 0.24, 1);
  --scroll-progress: 0;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 84px;
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(0, 212, 255, 0.12), transparent 24%),
    radial-gradient(circle at 88% 84%, rgba(0, 96, 140, 0.18), transparent 28%),
    radial-gradient(circle at 50% 26%, rgba(0, 212, 255, 0.05), transparent 24%),
    linear-gradient(180deg, #04101e 0%, #061525 38%, #071a2e 72%, #071a2e 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: auto;
  text-rendering: optimizeLegibility;
  overscroll-behavior-y: none;
  touch-action: pan-y;
}

body.is-booting {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  gap: 14px;
  background:
    radial-gradient(circle at top, rgba(56, 217, 245, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(4, 8, 16, 0.96), rgba(4, 8, 16, 0.99));
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader-mark {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #000;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 14px 32px rgba(56, 217, 245, 0.2);
}

.site-loader p {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
input, textarea, select {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/* ─── Custom Cursor ─────────────────────────────────────── */
.cursor {
  display: none;
}

.cursor-dot {
  display: none;
}

.cursor-ring {
  display: none;
}

/* ─── Scroll progress bar ───────────────────────────────── */
.scroll-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--border);
  z-index: 9999;
}

.scroll-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── Container ─────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
}

/* ─── NAVIGATION ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.nav.scrolled {
  background: rgba(6, 21, 37, 0.48);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0;
  flex-shrink: 0;
}

.nav-logo-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}

.nav-link:hover {
  color: var(--text);
  background: var(--surface);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--text);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--accent);
  color: #000;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.nav-cta svg {
  width: 16px;
  height: 16px;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: rgba(4, 8, 16, 0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(24px);
}

.mobile-link {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s ease;
}

.mobile-link:hover { color: var(--accent); }
.mobile-link:last-child { border: none; }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 24px; }
}

.mobile-menu.open { display: flex; }

/* ─── SECTION BASE ──────────────────────────────────────── */
.section {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.section-dark {
  background: transparent;
}

section[id] {
  scroll-margin-top: 84px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
  padding: 10px 18px 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(90, 192, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(56, 217, 245, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(7, 18, 34, 0.44);
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 14px 36px rgba(0, 0, 0, 0.16);
  position: relative;
  overflow: hidden;
}

.section-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8af0ff, #5fa8ff);
  box-shadow:
    0 0 16px rgba(56, 217, 245, 0.65),
    0 0 32px rgba(79, 144, 255, 0.28);
  flex-shrink: 0;
}

.label-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: #d6f7ff;
  opacity: 1;
  letter-spacing: 0.08em;
  text-shadow: 0 0 18px rgba(56, 217, 245, 0.14);
}

.label-text {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: #dbe8f5;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(79, 144, 255, 0.12);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.9vw, 66px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.055em;
  color: #fbfdff;
  max-width: 820px;
  text-wrap: balance;
  margin: 0;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 44px rgba(0, 0, 0, 0.26);
}

.section-title em {
  font-style: normal;
  color: #aeeeff;
  text-shadow:
    0 0 22px rgba(56, 217, 245, 0.22),
    0 0 42px rgba(79, 144, 255, 0.12);
  position: relative;
}

.section-title em::after {
  content: '';
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  bottom: 0.06em;
  height: 0.26em;
  background: linear-gradient(90deg, rgba(56, 217, 245, 0.26), rgba(79, 144, 255, 0.14));
  border-radius: 999px;
  z-index: -1;
  filter: blur(8px);
}

/* ─── REVEAL ANIMATIONS ─────────────────────────────────── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal { transform: translateY(32px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--accent);
  color: #000;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.btn-primary .btn-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.4), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(56, 217, 245, 0.35);
}

.btn-primary:hover .btn-glow { opacity: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  color: rgba(235, 243, 255, 0.88);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid rgba(132, 183, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 26px rgba(0, 0, 0, 0.12);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-ghost:hover {
  color: #f8fbff;
  border-color: rgba(56, 217, 245, 0.32);
  background: linear-gradient(180deg, rgba(56, 217, 245, 0.12), rgba(255, 255, 255, 0.04));
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 36px rgba(5, 14, 28, 0.28);
}

.btn-ghost-strong {
  color: #eef7ff;
  border-color: rgba(110, 174, 255, 0.26);
}

.btn-ghost-strong span {
  opacity: 1;
}

.hero-actions .btn-ghost {
  min-width: 190px;
  justify-content: center;
  backdrop-filter: blur(14px);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
  z-index: 2;
}

.hero-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 1;
  will-change: transform;
  pointer-events: none;
}

.hero-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.02) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(ellipse 92% 84% at 50% 54%, black 36%, transparent 100%);
  z-index: 1;
  opacity: 0.34;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* Ambient orbs */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
  animation: orbPulse 10s ease-in-out infinite;
}

.orb-1 {
  width: 700px; height: 700px;
  background: #0a4a6e;
  opacity: 0.44;
  left: -12%;
  top: -15%;
  right: auto;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px; height: 500px;
  background: #0e3a5a;
  opacity: 0.34;
  right: -10%;
  bottom: -10%;
  left: auto;
  animation-delay: -5s;
}

.orb-3 {
  width: 420px; height: 420px;
  background: #00d4ff;
  opacity: 0.06;
  left: 35%;
  top: 20%;
  animation-delay: -3s;
}

.orb-4 {
  display: none;
}

.orb-5 {
  display: none;
}

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

.studio-beam,
.studio-vignette {
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 1;
}

.studio-beam {
  width: 38vw;
  height: 110vh;
  top: -8vh;
  border-radius: 999px;
  opacity: 0.42;
  filter: blur(58px);
  transform-origin: center top;
  mix-blend-mode: screen;
}

.studio-beam-1 {
  left: -7vw;
  background: linear-gradient(180deg, rgba(72, 174, 255, 0.18), rgba(72, 174, 255, 0.02));
  transform: rotate(-18deg);
  animation: beamDrift1 18s ease-in-out infinite;
}

.studio-beam-2 {
  right: -10vw;
  background: linear-gradient(180deg, rgba(56, 217, 245, 0.14), rgba(56, 217, 245, 0.015));
  transform: rotate(16deg);
  animation: beamDrift2 22s ease-in-out infinite;
}

.studio-beam-3 {
  left: 30vw;
  width: 24vw;
  background: linear-gradient(180deg, rgba(167, 139, 250, 0.12), rgba(167, 139, 250, 0.01));
  transform: rotate(-6deg);
  animation: beamDrift3 20s ease-in-out infinite;
}

.scan-line-overlay {
  position: fixed;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.08), transparent);
  animation: scanLineMove 10s linear infinite;
}

.studio-beam {
  display: none;
}

.studio-vignette {
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 50%, transparent 25%, rgba(4, 10, 22, 0.65) 100%);
}

@keyframes scanLineMove {
  0% { top: -2px; }
  100% { top: 100%; }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.section,
.project-card,
.service-card,
.skill-card,
.timeline-content,
.contact-form,
.about-card {
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.24);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 32px;
  animation: badgeFadeIn 0.8s var(--ease-out) 0.2s both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent); }
  50% { opacity: 0.6; box-shadow: 0 0 4px var(--accent); }
}

@keyframes badgeFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(42px, 6.8vw, 88px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
  overflow: hidden;
}

.hero-name-line {
  display: block;
  animation: nameSlide 0.9s var(--ease-out) both;
}

.hero-name-line:nth-child(1) { animation-delay: 0.35s; }
.hero-name-line:nth-child(2) { animation-delay: 0.45s; }

.hero-name-animated {
  display: inline-block;
  white-space: nowrap;
  overflow: visible;
  max-width: 100%;
}

.hero-name-singleline {
  color: #f7fbff;
}

.hero-letter {
  display: inline-block;
  opacity: 0.18;
  transform: translateX(0);
  filter: blur(0);
  will-change: transform, opacity, filter;
}

.hero-name-animated .hero-letter {
  animation: heroLetterLoop 4.6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  animation-delay: var(--letter-delay);
}

.hero-letter-gap {
  width: 0.18em;
}

@keyframes nameSlide {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: none; }
}

@keyframes heroLetterLoop {
  0% {
    opacity: 0;
    transform: translateX(-22px);
    filter: blur(8px);
  }
  12% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
  72% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
  100% {
    opacity: 0.22;
    transform: translateX(0);
    filter: blur(0);
  }
}

.hero-role {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  text-shadow: 0 0 20px rgba(56, 217, 245, 0.14), 0 0 18px rgba(9, 16, 28, 0.55);
  animation: fadeUp 0.8s var(--ease-out) 0.6s both;
}

.role-prefix {
  color: #97a8c0;
  font-weight: 600;
  text-shadow: 0 0 18px rgba(56, 217, 245, 0.12), 0 0 18px rgba(9, 16, 28, 0.5);
}

.role-rotating {
  color: var(--text);
  font-weight: 600;
  min-width: 200px;
  display: inline-block;
  transform: translateY(0);
  opacity: 1;
  will-change: transform, opacity, filter;
  transition:
    opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  text-shadow: 0 0 18px rgba(80, 205, 255, 0.18);
}

.role-rotating.is-switching {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(6px);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

.hero-bio {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 600;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 36px;
  text-shadow: 0 0 20px rgba(56, 217, 245, 0.12), 0 0 22px rgba(9, 16, 28, 0.45);
  animation: fadeUp 0.8s var(--ease-out) 0.7s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 60px;
  animation: fadeUp 0.8s var(--ease-out) 0.8s both;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fadeUp 0.8s var(--ease-out) 0.9s both;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 0;
  flex-direction: row;
  flex-wrap: wrap;
}

.stat strong {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}

.stat-suffix {
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  margin-right: 8px;
}

.stat p {
  width: 100%;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeUp 0.8s var(--ease-out) 1.1s both;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .hero-content { padding: 60px 24px; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .hero-scroll { display: none; }
}

/* ─── ABOUT ─────────────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 16px;
}

.about-body {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  padding: 5px 14px;
  border: 1px solid rgba(56, 217, 245, 0.2);
  border-radius: 100px;
  background: rgba(56, 217, 245, 0.04);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.tag:hover {
  background: rgba(56, 217, 245, 0.1);
  border-color: rgba(56, 217, 245, 0.4);
}

.about-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(0, 212, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(6, 24, 42, 0.44);
  backdrop-filter: blur(18px);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.about-card-inner {
  padding: 36px;
}

.about-card-header {
  margin-bottom: 32px;
}

.about-icon-grid {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.about-icon-grid span {
  font-size: 24px;
  filter: grayscale(0.3);
}

.about-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pillar-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  opacity: 0.7;
  padding-top: 3px;
  flex-shrink: 0;
}

.pillar strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.pillar p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ─── SKILLS ─────────────────────────────────────────────── */
.skills-header {
  margin-bottom: 56px;
}

.skills-header .section-title,
.projects-heading-block .section-title,
.contact-title {
  max-width: 860px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.skill-card {
  background:
    linear-gradient(180deg, rgba(0, 212, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(6, 24, 42, 0.42);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out), box-shadow 0.3s ease;
  transition-delay: var(--delay, 0ms);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 52px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(135%);
}

.skill-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56, 217, 245, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.skill-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(56, 217, 245, 0.08);
}

.skill-card:hover::before { opacity: 1; }

.skill-card-accent {
  background: linear-gradient(135deg, rgba(56, 217, 245, 0.06), rgba(79, 144, 255, 0.04));
  border-color: rgba(56, 217, 245, 0.15);
}

.skill-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.skill-card-media {
  position: relative;
  margin: -8px -4px 20px;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(56, 217, 245, 0.1), rgba(79, 144, 255, 0.08));
}

.skill-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 16, 0.02), rgba(4, 8, 16, 0.46));
}

.skill-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.45s var(--ease-out);
}

.skill-card:hover .skill-card-image {
  transform: scale(1.06);
}

.skill-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
}

.skill-icon {
  font-size: 28px;
  filter: grayscale(0.2);
}

.skill-category {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.skill-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.skill-desc {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.65;
  margin-bottom: 24px;
  text-shadow: 0 0 16px rgba(56, 217, 245, 0.09), 0 0 14px rgba(8, 14, 24, 0.26);
}

.skill-bars-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.skill-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px;
  align-items: center;
  gap: 12px;
}

.skill-row > span:first-child {
  font-size: 12px;
  color: var(--text-muted);
  white-space: normal;
  line-height: 1.45;
}

.bar-track {
  height: 4px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  width: 92px;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  width: 0%;
  transition: width 1.2s var(--ease-out);
}

.bar-pct { display: none; }

@media (max-width: 1100px) {
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .skills-grid { grid-template-columns: 1fr; }
}

/* ─── EXPERIENCE / TIMELINE ─────────────────────────────── */
.timeline {
  position: relative;
  margin-top: 48px;
  padding-left: 40px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 28px;
  margin-bottom: 0;
  position: relative;
}

.timeline-item:last-child .timeline-line { display: none; }

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4px;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 12px rgba(56, 217, 245, 0.4);
}

.timeline-line {
  width: 1px;
  flex: 1;
  min-height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin-top: 8px;
  opacity: 0.3;
}

.timeline-content {
  padding-bottom: 56px;
  background:
    linear-gradient(180deg, rgba(0, 212, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(6, 24, 42, 0.4);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 24px;
  padding: 28px 28px 36px;
  backdrop-filter: blur(16px) saturate(130%);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.timeline-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.timeline-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.timeline-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(56, 217, 245, 0.1);
  border: 1px solid rgba(56, 217, 245, 0.2);
  padding: 2px 10px;
  border-radius: 100px;
}

.timeline-role {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.timeline-company {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 400;
}

.timeline-desc {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 16px;
  text-shadow: 0 0 16px rgba(56, 217, 245, 0.08), 0 0 14px rgba(8, 14, 24, 0.24);
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.timeline-tags span {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 3px 12px;
  border-radius: 100px;
}

/* ─── PROJECTS ───────────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.projects-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: end;
  margin-top: 10px;
}

.projects-heading-block {
  max-width: 840px;
}

.projects-heading-block .section-title {
  margin-bottom: 16px;
  max-width: 12ch;
}

.projects-intro {
  max-width: 700px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(225, 235, 247, 0.82);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: 0 0 28px rgba(56, 217, 245, 0.08);
}

.projects-summary-panel {
  position: relative;
  padding: 24px 24px 22px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(8, 14, 24, 0.44);
  border: 1px solid rgba(120, 201, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 60px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.projects-summary-panel::before {
  content: "";
  position: absolute;
  inset: -20% auto auto 62%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 217, 245, 0.26), rgba(56, 217, 245, 0));
  pointer-events: none;
}

.projects-summary-label {
  position: relative;
  display: inline-block;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.projects-summary-points {
  position: relative;
  display: grid;
  gap: 12px;
}

.projects-summary-points span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: rgba(243, 249, 255, 0.92);
}

.projects-summary-points span::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7de7ff, #38d9f5);
  box-shadow: 0 0 14px rgba(56, 217, 245, 0.55);
}

.project-card {
  background:
    linear-gradient(180deg, rgba(0, 212, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(6, 24, 42, 0.46);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 28px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.4s var(--ease-out), box-shadow 0.3s ease;
  grid-column: span 6;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 30px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px) saturate(145%);
}

.project-card-large {
  grid-column: span 7;
}

.project-card:nth-child(2) { grid-column: span 5; }
.project-card:nth-child(3) { grid-column: span 5; }
.project-card:nth-child(4) { grid-column: span 7; }

.project-card:hover {
  border-color: rgba(125, 231, 255, 0.32);
  transform: translateY(-6px);
  box-shadow: 0 36px 88px rgba(0, 0, 0, 0.34);
}

.project-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: linear-gradient(180deg, rgba(6, 10, 18, 0.1), rgba(6, 10, 18, 0.46));
}

.project-card-large .project-card-media {
  aspect-ratio: 16/9.2;
}

.project-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-placeholder span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.project-shape {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  animation: shapeRotate 20s linear infinite;
}

.project-placeholder-1 {
  background: radial-gradient(ellipse at 30% 40%, rgba(56, 217, 245, 0.2), transparent 60%),
              radial-gradient(ellipse at 70% 70%, rgba(79, 144, 255, 0.15), transparent 60%),
              linear-gradient(135deg, #0a1628, #0f1e35);
}

.project-placeholder-1 .project-shape {
  background: conic-gradient(from 0deg, transparent 0deg, rgba(56, 217, 245, 0.12) 60deg, transparent 120deg);
}

.project-placeholder-2 {
  background: radial-gradient(ellipse at 70% 30%, rgba(167, 139, 250, 0.2), transparent 60%),
              radial-gradient(ellipse at 30% 70%, rgba(56, 217, 245, 0.1), transparent 60%),
              linear-gradient(135deg, #100a28, #1a0f35);
}

.project-placeholder-2 .project-shape {
  background: conic-gradient(from 120deg, transparent 0deg, rgba(167, 139, 250, 0.12) 60deg, transparent 120deg);
}

.project-placeholder-3 {
  background: radial-gradient(ellipse at 50% 50%, rgba(79, 144, 255, 0.2), transparent 60%),
              linear-gradient(135deg, #081028, #0f1840);
}

.project-placeholder-3 .project-shape {
  background: conic-gradient(from 240deg, transparent 0deg, rgba(79, 144, 255, 0.12) 60deg, transparent 120deg);
}

.project-placeholder-4 {
  background: radial-gradient(ellipse at 40% 60%, rgba(56, 217, 245, 0.15), transparent 60%),
              radial-gradient(ellipse at 60% 30%, rgba(167, 139, 250, 0.12), transparent 60%),
              linear-gradient(135deg, #0a1220, #0e1a30);
}

.project-placeholder-4 .project-shape {
  background: conic-gradient(from 60deg, transparent 0deg, rgba(56, 217, 245, 0.1) 90deg, transparent 180deg);
}

@keyframes shapeRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.project-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 16, 0.16), rgba(4, 8, 16, 0.78));
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-hover-overlay { opacity: 1; }

.project-hover-overlay span {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-media-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(5, 12, 22, 0.7);
  border: 1px solid rgba(125, 231, 255, 0.2);
  color: #eff8ff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.project-card-body {
  padding: 30px 30px 28px;
}

.project-card-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tag {
  font-size: 11px;
  font-weight: 700;
  color: #abedff;
  background: rgba(56, 217, 245, 0.08);
  border: 1px solid rgba(56, 217, 245, 0.14);
  padding: 5px 11px;
  border-radius: 100px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card-index {
  flex: 0 0 auto;
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: -0.04em;
}

.project-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: #f5fbff;
  line-height: 1.16;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.project-desc {
  font-size: 15px;
  color: rgba(217, 229, 240, 0.86);
  font-weight: 600;
  line-height: 1.82;
  margin-bottom: 16px;
  text-shadow: 0 0 14px rgba(56, 217, 245, 0.06), 0 0 12px rgba(8, 14, 24, 0.24);
}

.project-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 22px;
}

.project-kpi {
  padding: 16px 16px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.project-kpi strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f4fbff;
}

.project-kpi span {
  display: block;
  font-size: 13px;
  line-height: 1.65;
  color: rgba(204, 220, 233, 0.78);
}

.edits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
}

.edit-card {
  background:
    linear-gradient(180deg, rgba(0, 212, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(6, 24, 42, 0.46);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 26px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.35s var(--ease-out), box-shadow 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 64px rgba(0, 0, 0, 0.24);
}

.edit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.24);
  box-shadow: 0 30px 74px rgba(0, 0, 0, 0.28);
}

.edit-card-media {
  padding: 16px;
  background: rgba(8, 14, 24, 0.56);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.edit-card-media img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
  border-radius: 18px;
}

.edit-card:hover .edit-card-media img {
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.04);
}

.project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.project-year {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(175, 192, 208, 0.72);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-link {
  font-size: 13px;
  font-weight: 700;
  color: #dff7ff;
  transition: color 0.2s ease;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-link:hover { color: var(--accent); }

@media (max-width: 1000px) {
  .projects-showcase {
    grid-template-columns: 1fr;
  }

  .edits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card,
  .project-card-large,
  .project-card:nth-child(2),
  .project-card:nth-child(3),
  .project-card:nth-child(4) {
    grid-column: span 12;
  }
}

@media (max-width: 600px) {
  .projects-grid { grid-template-columns: 1fr; }

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

  .projects-showcase {
    gap: 18px;
  }

  .projects-heading-block .section-title {
    max-width: none;
  }

  .projects-intro {
    font-size: 14px;
    line-height: 1.75;
  }

  .edits-intro {
    font-size: 14px;
    line-height: 1.75;
  }

  .projects-summary-panel,
  .project-card-body {
    padding: 22px;
  }

  .edit-card-body {
    padding: 18px;
  }

  .project-title {
    font-size: 22px;
  }

  .project-kpis {
    grid-template-columns: 1fr;
  }
}

/* ─── ACHIEVEMENTS ───────────────────────────────────────── */
.achievements-section {
  background: linear-gradient(to bottom, var(--bg), var(--bg-1));
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.achievement {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.achievement::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 217, 245, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.achievement:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.achievement:hover::after { opacity: 1; }

.achievement-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.achievement h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.achievement p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .achievements-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .achievements-grid { grid-template-columns: 1fr; }
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-section {
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(56, 217, 245, 0.06), transparent 70%);
  pointer-events: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 16px;
}

.contact-available {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text-muted);
}

.avail-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
  animation: badgePulse 2s ease-in-out infinite;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: #fbfdff;
  max-width: 700px;
  margin-bottom: 22px;
  text-wrap: balance;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06),
    0 16px 44px rgba(0, 0, 0, 0.24);
}

.contact-title em {
  font-style: normal;
  color: #aeeeff;
  text-shadow:
    0 0 22px rgba(56, 217, 245, 0.22),
    0 0 42px rgba(79, 144, 255, 0.12);
}

.contact-body {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.75;
  margin-bottom: 40px;
  text-shadow: 0 0 16px rgba(56, 217, 245, 0.08), 0 0 14px rgba(8, 14, 24, 0.24);
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.channel-card:hover {
  border-color: var(--border-hover);
  background: var(--surface-hover);
}

.channel-icon {
  width: 40px;
  height: 40px;
  background: rgba(56, 217, 245, 0.08);
  border: 1px solid rgba(56, 217, 245, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 700;
  font-family: var(--font-mono);
}

.channel-label {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.channel-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.channel-arrow {
  font-size: 18px;
  color: var(--text-muted);
  margin-left: auto;
  transition: transform 0.2s ease, color 0.2s ease;
}

.channel-card:hover .channel-arrow {
  transform: translateX(4px);
  color: var(--accent);
}

/* Contact form */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background:
    linear-gradient(180deg, rgba(0, 212, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(6, 24, 42, 0.42);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: 24px;
  padding: 26px;
  backdrop-filter: blur(18px) saturate(135%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-full {
  grid-column: span 2;
}

.form-group label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease;
  resize: none;
}

.form-group select option {
  background: var(--bg-1);
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(56, 217, 245, 0.4);
  background: var(--surface-hover);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-faint);
}

@media (max-width: 960px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 500px) {
  .contact-form { grid-template-columns: 1fr; }
  .form-full { grid-column: span 1; }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: rgba(4, 8, 16, 0.34);
  backdrop-filter: blur(18px);
  position: relative;
  z-index: 2;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-left p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--accent); }

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: var(--text-faint);
  font-family: var(--font-mono);
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ─── WHATSAPP FAB ───────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.whatsapp-fab svg {
  width: 26px;
  height: 26px;
  color: white;
}

.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

/* Extra layout for sourced portfolio content */
.section-copy {
  max-width: 620px;
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.75;
  text-shadow: 0 0 16px rgba(56, 217, 245, 0.08), 0 0 16px rgba(8, 14, 24, 0.3);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 440px);
  gap: 48px;
  align-items: center;
}

.hero-copy-wrap {
  min-width: 0;
}

.hero-visual-wrap {
  position: relative;
  z-index: 2;
}

.hero-portrait-card {
  background:
    linear-gradient(180deg, rgba(0, 212, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(6, 28, 52, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: 20px;
  padding: 22px;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 60px rgba(0, 212, 255, 0.1),
    0 0 120px rgba(0, 50, 100, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.07);
}

.hero-portrait-shell {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 212, 255, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(0, 60, 100, 0.26), rgba(0, 30, 60, 0.42));
  aspect-ratio: 4 / 4.6;
}

.hero-portrait-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(4, 8, 16, 0.18) 100%);
  pointer-events: none;
}

.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-meta {
  margin-top: 18px;
  display: grid;
  gap: 6px;
}

.hero-visual-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
}

.hero-visual-meta strong {
  font-family: var(--font-heading);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--text);
}

.hero-highlight-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.hero-highlight-list .tag {
  background: rgba(56, 217, 245, 0.08);
}

.about-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.about-media-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.services-copy {
  margin-top: 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.service-card {
  position: relative;
  padding: 30px 26px;
  background:
    linear-gradient(180deg, rgba(0, 212, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(6, 24, 42, 0.42);
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out), box-shadow 0.3s ease;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 52px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(135%);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56, 217, 245, 0.35), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.service-card-media {
  position: relative;
  margin: -30px -26px 22px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(135deg, rgba(56, 217, 245, 0.1), rgba(79, 144, 255, 0.08));
}

.service-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 8, 16, 0.02), rgba(4, 8, 16, 0.52)),
    radial-gradient(circle at top right, rgba(56, 217, 245, 0.18), transparent 45%);
}

.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out), filter 0.45s ease;
  filter: saturate(1.05) contrast(1.02);
}

.service-card:hover .service-card-image {
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.06);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--text);
  text-wrap: balance;
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.7;
  text-shadow: 0 0 14px rgba(56, 217, 245, 0.08), 0 0 12px rgba(8, 14, 24, 0.24);
}

.service-index {
  display: inline-flex;
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.project-cover img,
.project-support-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-placeholder {
  overflow: hidden;
}

.contact-note {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.65;
  text-shadow: 0 0 14px rgba(56, 217, 245, 0.08), 0 0 12px rgba(8, 14, 24, 0.24);
}

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual-wrap {
    max-width: 460px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-media-grid {
    grid-template-columns: 1fr;
  }

  .about-media-grid img {
    height: 220px;
  }
}

/* ─── UTILITY / MISC ─────────────────────────────────────── */

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.12;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% calc(15% + (var(--scroll-progress) * 16%)), rgba(0, 212, 255, 0.06), transparent 18%),
    radial-gradient(circle at 50% 0%, rgba(0, 80, 130, 0.08), transparent 28%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.82;
}

/* Selection */
::selection {
  background: rgba(56, 217, 245, 0.2);
  color: var(--accent);
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--text-faint); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* Form success state */
.form-success {
  text-align: center;
  padding: 40px;
}

.form-success h3 {
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section-label {
    gap: 12px;
    margin-bottom: 26px;
    padding: 9px 14px 9px 12px;
  }
  .label-num { font-size: 11px; }
  .label-text { font-size: 10px; letter-spacing: 0.18em; }
  .section-title,
  .contact-title { font-size: 34px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .whatsapp-fab { bottom: 20px; right: 20px; }
  html { scroll-behavior: auto; }
  body {
    -webkit-overflow-scrolling: touch;
  }
  .hero-canvas {
    display: block;
    opacity: 0.96;
  }
  .hero-grid {
    display: block;
    opacity: 0.4;
    background-size: 54px 54px;
    mix-blend-mode: screen;
  }
  .orb {
    display: block;
    filter: blur(100px);
    opacity: 0.88;
  }
  .orb-1 {
    width: 460px;
    height: 460px;
    top: -140px;
    right: -150px;
  }
  .orb-2 {
    width: 420px;
    height: 420px;
    bottom: -120px;
    left: -150px;
  }
  .orb-3 {
    width: 280px;
    height: 280px;
    top: 40%;
    left: 45%;
  }
  .orb-4 {
    width: 320px;
    height: 320px;
    top: 52%;
    right: -90px;
  }
  .orb-5 {
    width: 440px;
    height: 440px;
    bottom: -180px;
    right: -20px;
  }
  .studio-beam {
    display: block;
    width: 56vw;
    filter: blur(52px);
    opacity: 0.34;
  }
  .scroll-bar {
    display: block;
  }
  .hero-scroll {
    display: none;
  }
  .nav,
  .nav.scrolled {
    backdrop-filter: blur(12px);
  }
  .hero {
    min-height: auto;
    padding-top: 88px;
  }
  .hero-content {
    padding: 44px 24px 24px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-name {
    font-size: clamp(40px, 12vw, 60px);
  }
  .hero-role {
    font-size: 18px;
    margin-bottom: 18px;
  }
  .hero-bio {
    max-width: none;
    font-size: 15px;
  }
  .hero-highlight-list {
    gap: 8px;
    margin-bottom: 20px;
  }
  .hero-actions {
    gap: 12px;
    margin-bottom: 32px;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .stat {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
  }
  .hero-portrait-card {
    padding: 16px;
  }
  .about-layout,
  .contact-layout {
    gap: 36px;
  }
  .timeline {
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .hero-name { font-size: 52px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .hero-name-singleline {
    white-space: normal;
  }
  .hero-grid {
    opacity: 0.34;
    background-size: 46px 46px;
  }
  .orb {
    filter: blur(86px);
  }
  .studio-beam {
    opacity: 0.24;
    filter: blur(44px);
  }
  .container {
    padding: 0 18px;
  }
  .nav-inner {
    padding: 0 18px;
  }
  .section {
    padding: 68px 0;
  }
  .hero-content {
    padding: 32px 18px 10px;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .service-card,
  .skill-card,
  .project-card,
  .project-card-large,
  .timeline-content,
  .contact-form,
  .about-card {
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-canvas,
  .hero-grid,
  .orb,
  .studio-beam,
  .studio-vignette,
  .hero-scroll,
  .scroll-bar {
    display: none;
  }
}

/* ─── SECTION SEPARATOR ──────────────────────────────────── */
.section + .section-dark,
.section-dark + .section {
  position: relative;
}

body[data-simple-theme="true"] {
  background:
    radial-gradient(circle at top, rgba(95, 168, 255, 0.12), transparent 32%),
    linear-gradient(180deg, #0b1220 0%, #0d1526 40%, #0a1220 100%);
}

body[data-simple-theme="true"]::before,
body[data-simple-theme="true"] .scroll-bar,
body[data-simple-theme="true"] .hero-canvas,
body[data-simple-theme="true"] .hero-grid,
body[data-simple-theme="true"] .orb,
body[data-simple-theme="true"] .studio-beam,
body[data-simple-theme="true"] .studio-vignette,
body[data-simple-theme="true"] .hero-scroll {
  display: none !important;
}

body[data-simple-theme="true"] .nav,
body[data-simple-theme="true"] .nav.scrolled {
  background: rgba(11, 18, 32, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body[data-simple-theme="true"] .hero {
  min-height: auto;
  padding-top: 132px;
  padding-bottom: 72px;
}

body[data-simple-theme="true"] .hero-content {
  padding: 0 48px;
}

body[data-simple-theme="true"] .hero-layout {
  align-items: center;
  gap: 40px;
}

body[data-simple-theme="true"] .hero-badge,
body[data-simple-theme="true"] .section-label,
body[data-simple-theme="true"] .tag,
body[data-simple-theme="true"] .timeline-tags span,
body[data-simple-theme="true"] .project-tag {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow: none;
}

body[data-simple-theme="true"] .hero-name {
  font-size: clamp(38px, 5.2vw, 72px);
  letter-spacing: -0.04em;
}

body[data-simple-theme="true"] .hero-name-animated .hero-letter {
  animation: heroLetterSimple 0.6s ease forwards;
  animation-delay: var(--letter-delay);
}

@keyframes heroLetterSimple {
  from {
    opacity: 0;
    transform: translateX(-14px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

body[data-simple-theme="true"] .hero-role,
body[data-simple-theme="true"] .hero-bio,
body[data-simple-theme="true"] .about-body,
body[data-simple-theme="true"] .service-card p,
body[data-simple-theme="true"] .skill-desc,
body[data-simple-theme="true"] .project-desc,
body[data-simple-theme="true"] .contact-body,
body[data-simple-theme="true"] .contact-note,
body[data-simple-theme="true"] .timeline-desc,
body[data-simple-theme="true"] .channel-label,
body[data-simple-theme="true"] .footer-left p,
body[data-simple-theme="true"] .footer-copy {
  color: #c4cede;
  text-shadow: none;
}

body[data-simple-theme="true"] .hero-stats,
body[data-simple-theme="true"] .about-card,
body[data-simple-theme="true"] .service-card,
body[data-simple-theme="true"] .skill-card,
body[data-simple-theme="true"] .timeline-content,
body[data-simple-theme="true"] .project-card,
body[data-simple-theme="true"] .project-card-large,
body[data-simple-theme="true"] .contact-form,
body[data-simple-theme="true"] .channel-card,
body[data-simple-theme="true"] .hero-portrait-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(4, 10, 20, 0.24);
}

body[data-simple-theme="true"] .service-card:hover,
body[data-simple-theme="true"] .skill-card:hover,
body[data-simple-theme="true"] .project-card:hover,
body[data-simple-theme="true"] .project-card-large:hover,
body[data-simple-theme="true"] .channel-card:hover,
body[data-simple-theme="true"] .hero-portrait-card:hover {
  transform: translateY(-3px);
  border-color: rgba(147, 197, 253, 0.26);
  box-shadow: 0 18px 44px rgba(4, 10, 20, 0.3);
}

body[data-simple-theme="true"] .service-card-media::after,
body[data-simple-theme="true"] .project-hover-overlay {
  background: linear-gradient(180deg, rgba(8, 14, 24, 0.08), rgba(8, 14, 24, 0.42));
}

body[data-simple-theme="true"] .btn-primary,
body[data-simple-theme="true"] .btn-ghost,
body[data-simple-theme="true"] .nav-cta {
  border-radius: 12px;
}

body[data-simple-theme="true"] .btn-primary {
  background: linear-gradient(135deg, #5fa8ff, #93c5fd);
  color: #08111f;
  box-shadow: 0 14px 28px rgba(95, 168, 255, 0.18);
}

body[data-simple-theme="true"] .btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

body[data-simple-theme="true"] .section-dark {
  background: transparent;
}

body[data-simple-theme="true"] .section {
  padding: 88px 0;
}

body[data-simple-theme="true"] .section-title,
body[data-simple-theme="true"] .contact-title {
  text-shadow: none;
}

body[data-simple-theme="true"] .contact-section {
  padding-bottom: 110px;
}

body[data-simple-theme="true"] .footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 14, 24, 0.42);
}

@media (max-width: 768px) {
  body[data-simple-theme="true"] .hero-content {
    padding: 0 24px;
  }
}
