/* ============================================
   PRIYANSHU - PREMIUM PERSONAL PROFILE
   Main Stylesheet
   ============================================ */

/* --- CSS CUSTOM PROPERTIES --- */
:root {
  --bg-main: #0A0A0A;
  --bg-secondary: #121212;
  --bg-card: #161616;
  --accent: #FF6A00;
  --accent-light: #FF8C00;
  --accent-glow: rgba(255, 106, 0, 0.25);
  --accent-glow-strong: rgba(255, 106, 0, 0.45);
  --text-white: #F5F5F5;
  --text-gray: #BDBDBD;
  --text-muted: #787878;
  --border: rgba(255, 106, 0, 0.15);
  --border-hover: rgba(255, 106, 0, 0.5);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.06);

  /* Typography */
  --font-primary: 'Space Grotesk', sans-serif;
  --font-display: 'Bebas Neue', cursive;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-med: 0.4s ease;
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-main);
  color: var(--text-white);
  font-family: var(--font-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-light);
}

/* Selection */
::selection {
  background: var(--accent);
  color: #000;
}

/* --- UTILITY CLASSES --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255, 106, 0, 0.06);
}

.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s infinite;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--text-white);
  margin-bottom: 12px;
}

.section-title span {
  color: var(--accent);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-gray);
  max-width: 520px;
  line-height: 1.8;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #FF6A00, #FF8C00, #FFB347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- GLOBAL NOISE OVERLAY --- */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  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: 9999;
  opacity: 0.4;
}

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

#navbar.scrolled {
  padding: 14px 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--text-white);
  text-decoration: none;
  position: relative;
}

.nav-logo span {
  color: var(--accent);
}

.nav-logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-med);
}

.nav-logo:hover::after {
  transform: scaleX(1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-menu a {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-gray);
  text-decoration: none;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition-med);
}

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

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 22px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-med);
  z-index: -1;
}

.nav-cta:hover {
  color: #000;
}

.nav-cta:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta svg {
  width: 14px;
  height: 14px;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

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

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav-mobile {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

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

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 4px;
  color: var(--text-white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav-mobile a:hover {
  color: var(--accent);
}

.nav-mobile .mobile-cta {
  margin-top: 20px;
  padding: 14px 40px;
  border: 2px solid var(--accent);
  border-radius: 100px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.nav-mobile .mobile-cta:hover {
  background: var(--accent);
  color: #000;
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

/* Background grid */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,106,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,106,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Hero scanline */
#hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(10,10,10,0.1) 50%,
    rgba(10,10,10,0.7) 100%
  );
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* Hero Left */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: 6px;
  color: var(--text-white);
  position: relative;
}

.hero-name-outline {
  -webkit-text-stroke: 1px rgba(255,106,0,0.3);
  color: transparent;
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: -1;
}

.hero-roles {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-role-item {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-gray);
  letter-spacing: 1px;
}

.hero-role-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.hero-desc {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.9;
  max-width: 460px;
  border-left: 2px solid var(--accent);
  padding-left: 18px;
}

.hero-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-social-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hero-social-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-glow);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.hero-social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--accent-glow);
}

.hero-social-icon:hover::before {
  opacity: 1;
}

.hero-social-icon svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255,106,0,0.4);
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-white);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-secondary svg {
  width: 16px;
  height: 16px;
}

.btn-primary svg {
  width: 16px;
  height: 16px;
}

/* Hero Right */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Glow orb */
.hero-glow-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,0.35) 0%, rgba(255,106,0,0.1) 40%, transparent 70%);
  animation: float-orb 6s ease-in-out infinite;
  z-index: 0;
}

.hero-glow-ring {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 1px solid rgba(255,106,0,0.2);
  animation: float-orb 6s ease-in-out infinite, rotate-ring 20s linear infinite;
  z-index: 0;
}

.hero-glow-ring::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 15px var(--accent), 0 0 30px var(--accent);
}

.hero-portrait-wrap {
  position: relative;
  z-index: 1;
  animation: float-portrait 6s ease-in-out infinite;
}

.hero-portrait {
  width: 360px;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
  filter: grayscale(100%) contrast(1.1);
  display: block;
  position: relative;
  z-index: 1;
}

/* Portrait placeholder (when no image) */
.hero-portrait-placeholder {
  width: 360px;
  height: 460px;
  border-radius: 24px;
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.hero-portrait-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,106,0,0.05) 0%, transparent 60%);
}

.portrait-placeholder-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portrait-placeholder-icon svg {
  width: 60px;
  height: 60px;
  color: var(--text-muted);
}

.portrait-placeholder-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  text-align: center;
}

.portrait-corner {
  position: absolute;
  width: 24px;
  height: 24px;
}

.portrait-corner-tl {
  top: 14px; left: 14px;
  border-top: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  border-radius: 4px 0 0 0;
}

.portrait-corner-tr {
  top: 14px; right: 14px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  border-radius: 0 4px 0 0;
}

.portrait-corner-bl {
  bottom: 14px; left: 14px;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  border-radius: 0 0 0 4px;
}

.portrait-corner-br {
  bottom: 14px; right: 14px;
  border-bottom: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  border-radius: 0 0 4px 0;
}

/* Hero decorative badges */
.hero-badge {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  z-index: 2;
  animation: float-portrait 6s ease-in-out infinite;
}

.hero-badge-1 {
  top: 40px;
  right: -20px;
  animation-delay: -2s;
}

.hero-badge-2 {
  bottom: 80px;
  left: -30px;
  animation-delay: -4s;
}

.hero-badge-icon {
  font-size: 20px;
}

.hero-badge-text {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-gray);
  letter-spacing: 1px;
  line-height: 1.4;
}

.hero-badge-text strong {
  display: block;
  color: var(--text-white);
  font-size: 12px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,106,0,0.4);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--accent);
  border-radius: 2px;
  animation: scroll-wheel 2s ease infinite;
}

.scroll-text {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ============================================
   STATS SECTION
   ============================================ */
#stats {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,106,0,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px var(--accent-glow);
}

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

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,106,0,0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  transition: all var(--transition-med);
}

.stat-card:hover .stat-icon {
  background: rgba(255,106,0,0.15);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.stat-info {
  position: relative;
  z-index: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.stat-value {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.2;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
#about {
  padding: var(--section-padding);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

/* About image side */
.about-visual {
  position: relative;
}

.about-image-wrap {
  position: relative;
  display: inline-block;
}

.about-img {
  width: 100%;
  max-width: 380px;
  height: 440px;
  object-fit: cover;
  border-radius: 24px;
  filter: grayscale(80%);
  display: block;
}

.about-img-placeholder {
  width: 340px;
  height: 420px;
  border-radius: 24px;
  background: linear-gradient(145deg, #181818, #101010);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.about-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,106,0,0.05), transparent);
}

.about-img-placeholder svg {
  width: 80px;
  height: 80px;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.about-img-placeholder p {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

/* Decorative elements */
.about-deco-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px 20px;
  backdrop-filter: blur(10px);
}

.about-deco-badge .deco-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
}

.about-deco-badge .deco-text {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.about-deco-tag {
  position: absolute;
  top: 30px;
  right: -30px;
  background: rgba(255,106,0,0.1);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
}

.about-glow-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,0.12), transparent 70%);
  pointer-events: none;
}

/* About text side */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-text p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text p strong {
  color: var(--text-white);
  font-weight: 600;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all var(--transition-fast);
}

.about-highlight-item:hover {
  border-color: var(--border-hover);
  background: rgba(255,106,0,0.05);
}

.about-highlight-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--accent);
}

.about-highlight-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-gray);
  text-transform: uppercase;
}

/* ============================================
   SKILLS SECTION
   ============================================ */
#skills {
  padding: var(--section-padding);
  position: relative;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.skill-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.skill-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.skill-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,106,0,0.07), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-med);
}

.skill-card:hover {
  border-color: rgba(255,106,0,0.4);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(255,106,0,0.15);
}

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

.skill-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(255,106,0,0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: all var(--transition-med);
  position: relative;
  z-index: 1;
}

.skill-card:hover .skill-icon-wrap {
  background: rgba(255,106,0,0.15);
  border-color: var(--accent);
  box-shadow: 0 0 25px rgba(255,106,0,0.3);
  transform: scale(1.05);
}

.skill-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

.skill-desc {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.skill-level-bar {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.skill-level-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.skill-level-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

/* ============================================
   INTERESTS SECTION
   ============================================ */
#interests {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--bg-main), var(--bg-secondary), var(--bg-main));
  position: relative;
}

.interests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.interest-card {
  background: rgba(18,18,18,0.8);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
}

.interest-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,106,0,0.5);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 50px rgba(255,106,0,0.12);
}

.interest-card-glow {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,0.12), transparent 70%);
  transition: all var(--transition-med);
}

.interest-card:hover .interest-card-glow {
  transform: scale(1.5);
  opacity: 1.5;
}

.interest-emoji {
  font-size: 42px;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.interest-card:hover .interest-emoji {
  transform: scale(1.15) rotate(-5deg);
}

.interest-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.interest-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.interest-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding: 5px 12px;
  background: rgba(255,106,0,0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
}

/* ============================================
   GOALS SECTION
   ============================================ */
#goals {
  padding: var(--section-padding);
  position: relative;
}

.goals-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.goals-intro {
  position: sticky;
  top: 120px;
}

.goals-intro-text {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.9;
  margin-top: 20px;
}

.goals-visual {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 24px 0;
  border-radius: 2px;
}

.goals-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.goal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.goal-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 3px 0 0 3px;
  transform: scaleY(0);
  transition: transform var(--transition-med);
}

.goal-card:hover {
  border-color: rgba(255,106,0,0.35);
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.goal-card:hover::before {
  transform: scaleY(1);
}

.goal-num {
  font-family: var(--font-display);
  font-size: 42px;
  color: rgba(255,106,0,0.2);
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--transition-med);
}

.goal-card:hover .goal-num {
  color: rgba(255,106,0,0.5);
}

.goal-content {
  padding-top: 4px;
}

.goal-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.goal-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.goal-icon {
  font-size: 20px;
  margin-left: auto;
  opacity: 0.5;
  transition: opacity var(--transition-fast);
}

.goal-card:hover .goal-icon {
  opacity: 1;
}

/* ============================================
   MOTIVATION SECTION
   ============================================ */
#motivation {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.motivation-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 20vw;
  color: rgba(255,106,0,0.03);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 10px;
  user-select: none;
}

.motivation-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.motivation-pre {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.motivation-pre::before,
.motivation-pre::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.motivation-pre::after {
  background: linear-gradient(90deg, var(--accent), transparent);
}

.motivation-quote {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1.1;
  letter-spacing: 2px;
  color: var(--text-white);
  max-width: 900px;
  margin: 0 auto 32px;
}

.motivation-quote span {
  color: var(--accent);
  position: relative;
}

.motivation-quote span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 15px var(--accent);
}

.motivation-author {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
  padding: var(--section-padding);
  position: relative;
}

.contact-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,0.08), transparent 60%);
  pointer-events: none;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: 3px;
  color: var(--text-white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.contact-sub {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.contact-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  transition: all var(--transition-med);
  min-width: 200px;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.contact-card.instagram:hover {
  border-color: #E1306C;
  box-shadow: 0 20px 40px rgba(225,48,108,0.2);
}

.contact-card.email:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 40px var(--accent-glow);
}

.contact-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.instagram .contact-card-icon {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.email .contact-card-icon {
  background: rgba(255,106,0,0.15);
  border: 1px solid var(--border);
}

.email .contact-card-icon svg {
  color: var(--accent);
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.contact-card-info {
  text-align: left;
}

.contact-card-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-card-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--glass-border);
  position: relative;
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 4px;
  color: var(--text-white);
}

.footer-logo span {
  color: var(--accent);
}

.footer-info {
  text-align: center;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-location {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-muted);
  opacity: 0.6;
}

.footer-right {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-muted);
  opacity: 0.5;
  text-align: right;
}

/* ============================================
   SECTION DIVIDER
   ============================================ */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 auto;
}

/* ============================================
   REVEAL ANIMATIONS (JS-added classes)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================
   CURSOR
   ============================================ */
.cursor {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.1s ease;
  mix-blend-mode: screen;
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,106,0,0.4);
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: all 0.15s ease;
}

.cursor.hovered {
  transform: scale(2);
}

.cursor-follower.hovered {
  transform: scale(1.5);
  border-color: var(--accent);
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes float-orb {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

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

@keyframes rotate-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes scroll-wheel {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent); }
  50% { opacity: 0.5; box-shadow: 0 0 4px var(--accent); }
}

@keyframes text-glow {
  0%, 100% { text-shadow: 0 0 20px rgba(255,106,0,0.5); }
  50% { text-shadow: 0 0 40px rgba(255,106,0,0.8), 0 0 60px rgba(255,106,0,0.3); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Orange glow ambient light elements */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}

.ambient-glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(255,106,0,0.06);
  top: -100px;
  right: -200px;
}

.ambient-glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(255,106,0,0.04);
  bottom: -100px;
  left: -100px;
}
