/* ================================================================
   PORTFOLIO — Professional Dark Theme
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ── Variables ── */
:root {
  --primary:        #7c3aed;
  --primary-light:  #a855f7;
  --primary-dark:   #5b21b6;
  --secondary:      #06b6d4;
  --secondary-light:#22d3ee;
  --accent:         #f59e0b;
  --green:          #10b981;
  --bg:             #050510;
  --bg2:            #08081a;
  --surface:        #0f0f22;
  --surface2:       #16162e;
  --border:         rgba(255,255,255,0.06);
  --border2:        rgba(255,255,255,0.12);
  --text:           #e2e8f0;
  --soft:           #94a3b8;
  --muted:          #475569;
  --gradient:       linear-gradient(135deg, #7c3aed, #06b6d4);
  --gradient-text:  linear-gradient(135deg, #a855f7, #22d3ee);
  --glow-primary:   0 0 60px rgba(124,58,237,0.35);
  --glow-secondary: 0 0 60px rgba(6,182,212,0.3);
  --shadow-lg:      0 25px 60px rgba(0,0,0,0.5);
  --radius:         14px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --font-brand:    'Space Grotesk', sans-serif;
  --font-body:     'Outfit', sans-serif;
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --transition:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 999px; }

/* ── Typography helpers ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-brand); font-weight: 700; line-height: 1.2; }

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  padding: 5px 14px;
  background: rgba(6,182,212,0.08);
  border: 1px solid rgba(6,182,212,0.22);
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--soft);
  max-width: 560px;
  line-height: 1.8;
}

/* ── Custom Cursor ── */
.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  will-change: top, left;
  transition: opacity 0.3s;
}
.cursor-dot  { width: 7px;  height: 7px;  background: var(--primary-light); top: 0; left: 0; }
.cursor-ring { width: 36px; height: 36px; border: 1.5px solid rgba(168,85,247,0.55); top: 0; left: 0; transition: width .3s, height .3s, border-color .3s, opacity .3s; }
body.has-cursor .cursor-dot, body.has-cursor .cursor-ring { opacity: 1; }
body.has-cursor { cursor: none; }
.cursor-ring.hovered { width: 56px; height: 56px; border-color: var(--secondary); background: rgba(6,182,212,0.05); }

/* ── Preloader ── */
#preloader {
  position: fixed; inset: 0; z-index: 9990;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1.5rem;
}
.pl-name {
  font-family: var(--font-brand); font-size: 2.5rem; font-weight: 900;
  background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pl-bar { width: 180px; height: 2px; background: var(--surface2); border-radius: 999px; overflow: hidden; }
.pl-fill { height: 100%; background: var(--gradient); border-radius: 999px; animation: plFill 1.6s var(--ease) forwards; }
@keyframes plFill { 0% { width:0 } 100% { width:100% } }

/* ── Scroll Progress ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 1001;
  background: var(--gradient); transition: width 0.1s linear;
}

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 0;
  transition: all 0.4s ease;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}
.navbar.scrolled {
  background: rgba(5,5,16,0.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border2);
  padding: 0.65rem 0;
}
.navbar-brand {
  font-family: var(--font-brand); font-size: 1.6rem; font-weight: 900;
  background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  text-decoration: none; letter-spacing: -0.02em;
    max-width: calc(100% - 64px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.nav-link {
  color: var(--soft) !important; font-weight: 500; font-size: 0.88rem;
  padding: 0.42rem 0.85rem !important; border-radius: 8px;
  transition: color var(--transition), background var(--transition) !important;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--text) !important; background: rgba(255,255,255,0.05) !important; }
.nav-link.active::after {
  content: ''; position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%);
  width: 50%; height: 2px; background: var(--gradient); border-radius: 999px;
}
.btn-nav-hire {
  padding: 0.45rem 1.2rem !important;
  background: var(--gradient) !important;
  border-radius: 10px !important;
  color: white !important; font-weight: 700 !important;
  box-shadow: 0 0 20px rgba(124,58,237,0.3);
  transition: box-shadow var(--transition), transform var(--transition) !important;
}
.btn-nav-hire:hover { transform: translateY(-2px) !important; box-shadow: 0 0 35px rgba(124,58,237,0.5) !important; background: rgba(255,255,255,0) !important; }
/* Hamburger toggle button */
.navbar-toggler {
  border: 1px solid rgba(255,255,255,.18) !important;
    padding: 0 !important;
  background: rgba(255,255,255) !important;
  border-radius: 9px !important;
    position: relative;
    width: 40px;
    height: 36px;
    box-sizing: border-box;
    margin-left: auto;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  transition: background .2s, border-color .2s !important;
  cursor: pointer;
}
.navbar-toggler:hover { background: rgba(255,255,255,.09) !important; border-color: rgba(124,58,237,.45) !important; }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(124,58,237,.25) !important; outline: none !important; }
/* Custom hamburger bars (replace Bootstrap default icon) */
.navbar-toggler-icon {
  display: block; width: 18px; height: 2px;
  background: var(--text); border-radius: 2px;
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  transition: background .25s, transform .3s cubic-bezier(0.4,0,0.2,1), opacity .2s;
}
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: ''; display: block; width: 18px; height: 2px;
  background: var(--text); border-radius: 2px;
  position: absolute; left: 0;
  transition: transform .3s cubic-bezier(0.4,0,0.2,1), opacity .2s;
}
.navbar-toggler-icon::before { top: -6px; }
.navbar-toggler-icon::after  { top:  6px; }
/* Animate to × when drawer is open */
.navbar-toggler.is-open .navbar-toggler-icon        { background: transparent; }
.navbar-toggler.is-open .navbar-toggler-icon::before { transform: translateY(6px) rotate(45deg); }
.navbar-toggler.is-open .navbar-toggler-icon::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 991.98px) {
    .navbar .navbar-collapse {
        display: none !important;
    }
    .navbar .container {
        padding-left: .9rem;
        padding-right: .9rem;
    }
}

@media (min-width: 992px) {
    #navDrawerToggle {
        display: none !important;
    }
}

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 110px 0 60px;
}
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: 0.6; }
.hero-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); animation: orbFloat 10s ease-in-out infinite; }
.orb-1 { width: 550px; height: 550px; background: radial-gradient(circle, rgba(124,58,237,.55), transparent 70%); top: -120px; left: -120px; animation-delay: 0s; opacity: .45; }
.orb-2 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(6,182,212,.45), transparent 70%); bottom: -80px; right: -80px; animation-delay: -5s; opacity: .4; }
.orb-3 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(245,158,11,.25), transparent 70%); top: 35%; left: 55%; animation-delay: -2.5s; opacity: .35; }
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(35px,-35px) scale(1.08); }
  66%      { transform: translate(-25px,20px) scale(0.94); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px; font-size: 0.8rem; font-weight: 600;
  background: rgba(124,58,237,.12); border: 1px solid rgba(124,58,237,.3);
  color: var(--primary-light); margin-bottom: 1.5rem;
  animation: badgePulse 3s ease-in-out infinite;
}
.hero-badge .live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 3px rgba(16,185,129,.25);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes badgePulse { 0%,100%{box-shadow:0 0 0 0 rgba(124,58,237,.1)} 50%{box-shadow:0 0 0 10px rgba(124,58,237,0)} }
@keyframes livePulse  { 0%,100%{transform:scale(1);opacity:1}             50%{transform:scale(1.3);opacity:.7} }

.hero-name {
   font-weight: 900;
  line-height: 1.05; margin-bottom: .65rem; letter-spacing: -0.03em;
}
.hero-role {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 600;
  color: var(--soft); margin-bottom: 1.5rem; min-height: 2.4rem;
}
.typed-wrap { display: inline; }
.typed-cursor { color: var(--primary-light); animation: blink .7s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-desc { font-size: 1.05rem; color: var(--soft); max-width: 500px; margin-bottom: 2.5rem; line-height: 1.85; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.btn-glow {
  padding: .82rem 1.9rem; border-radius: 12px; font-weight: 700; font-size: .92rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition); position: relative; overflow: hidden; border: none;
}
.btn-glow::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(255,255,255,.18),transparent); opacity:0; transition:opacity .3s; }
.btn-glow:hover::before { opacity:1; }
.btn-glow-primary { background: var(--gradient); color: white; box-shadow: 0 0 30px rgba(124,58,237,.4); }
.btn-glow-primary:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(124,58,237,.6); color: white; }
.btn-glow-outline { background: transparent; border: 1.5px solid var(--border2); color: var(--text); }
.btn-glow-outline:hover { border-color: var(--secondary); color: var(--secondary); box-shadow: 0 0 25px rgba(6,182,212,.2); transform: translateY(-3px); }

.hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero-stat-val {
  font-family: var(--font-brand); font-size: 2.2rem; font-weight: 900; display: block; line-height: 1;
  background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-stat-lbl { font-size: .78rem; color: var(--soft); font-weight: 500; margin-top: 4px; }

/* Hero Visual — code card */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.code-card {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--radius-xl); padding: 1.5rem; font-family: 'Courier New', monospace; font-size: .83rem;
  width: 100%; max-width: 400px; box-shadow: var(--shadow-lg), var(--glow-primary);
  animation: cardFloat 7s ease-in-out infinite;
}
@keyframes cardFloat { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-18px) rotate(1deg)} }
.code-dots { display: flex; gap: 6px; margin-bottom: 1.2rem; }
.code-dot { width: 12px; height: 12px; border-radius: 50%; }
.code-dot:nth-child(1) { background: #ff5f57; }
.code-dot:nth-child(2) { background: #febc2e; }
.code-dot:nth-child(3) { background: #28c840; }
.code-line { margin-bottom: 5px; line-height: 1.6; }
.ck { color: #c792ea; } .cf { color: #82aaff; } .cs { color: #c3e88d; }
.cv { color: #f78c6c; } .cc { color: #546e7a; font-style:italic; } .cb { color: #89ddff; }
.floating-tag {
  position: absolute; background: var(--surface2); border: 1px solid var(--border2);
  border-radius: 12px; padding: 10px 14px; font-size: .8rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-lg);
  white-space: nowrap; font-family: var(--font-body);
}
.floating-tag.tr { top:-16px; right:-16px; animation: tagFloat 4s ease-in-out infinite; }
.floating-tag.bl { bottom:-16px; left:-16px; animation: tagFloat 4s ease-in-out infinite -1.5s; }
@keyframes tagFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ── Sections ── */
.section     { padding: 100px 0; }
.section-alt { background: var(--bg2); }

/* ── About ── */
.about-img-wrap { position: relative; display: inline-block; }
.about-img {
  width: 300px; height: 360px; object-fit: cover;
  border-radius: var(--radius-xl); border: 2px solid var(--border2);
  position: relative; z-index: 1; box-shadow: var(--shadow-lg);
}
.about-placeholder {
  width: 330px; height: 380px; border-radius: var(--radius-xl);
  background: var(--surface); border: 2px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: var(--muted); position: relative; z-index: 1;
}
.about-glow {
  position: absolute; inset: -24px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.3), transparent 70%);
  z-index: 0; animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{opacity:.5;transform:scale(1)} 50%{opacity:1;transform:scale(1.06)} }
.exp-badge {
  position: absolute; bottom: -20px; right: -20px; z-index: 2;
  background: var(--gradient); border-radius: var(--radius-lg);
  padding: 14px 20px; text-align: center; box-shadow: 0 0 30px rgba(124,58,237,.5);
}
.exp-badge .num { font-family: var(--font-brand); font-size: 2.2rem; font-weight: 900; color: white; line-height: 1; display: block; }
.exp-badge .lbl { font-size: .7rem; color: rgba(255,255,255,.85); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 1.5rem 0; }
.skill-tag {
  padding: 5px 14px; background: var(--surface); border: 1px solid var(--border2);
  border-radius: 999px; font-size: .82rem; font-weight: 500; color: var(--soft);
  transition: var(--transition); cursor: default;
}
.skill-tag:hover { border-color: var(--primary-light); color: var(--primary-light); background: rgba(168,85,247,.08); }

/* ── Skills ── */
.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 3rem; }
.skill-hdr { display: flex; justify-content: space-between; margin-bottom: 8px; font-weight: 600; font-size: .88rem; }
.skill-pct { color: var(--secondary); font-size: .82rem; }
.skill-bar { height: 6px; background: var(--surface2); border-radius: 999px; overflow: hidden; }
.skill-fill {
  height: 100%; width: 0%; background: var(--gradient); border-radius: 999px;
  transition: width 1.2s var(--ease); box-shadow: 0 0 12px rgba(124,58,237,.45);
}

/* ── Timeline (Experience) ── */
.timeline { position: relative; padding-left: 1.8rem; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--primary), var(--secondary), transparent);
}
.timeline-item { position: relative; padding: 0 0 2.8rem 2.5rem; }
.timeline-item::before {
  content: ''; position: absolute; left: -8px; top: 4px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--gradient); border: 3px solid var(--bg);
  box-shadow: 0 0 14px rgba(124,58,237,.5);
}
.timeline-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.5rem; transition: var(--transition);
}
.timeline-card:hover { border-color: var(--border2); box-shadow: 0 10px 35px rgba(124,58,237,.1); transform: translateX(5px); }
.tl-dur { font-size: .78rem; color: var(--secondary); font-weight: 700; margin-bottom: .4rem; display: flex; align-items: center; gap: 6px; }
.tl-role { font-size: 1.1rem; font-weight: 700; margin-bottom: .2rem; }
.tl-company { font-size: .88rem; color: var(--primary-light); font-weight: 600; margin-bottom: .7rem; }
.tl-desc { font-size: .9rem; color: var(--soft); line-height: 1.75; }

/* ── Projects ── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 6px 18px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; color: var(--soft); font-size: .83rem; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary); border-color: var(--primary); color: white;
  box-shadow: 0 0 20px rgba(124,58,237,.4);
}
.projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.project-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
}
.project-card:hover { border-color: var(--border2); transform: translateY(-8px); box-shadow: 0 20px 55px rgba(124,58,237,.2); }
.project-card.hidden { display: none; }
.project-thumb {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  background: linear-gradient(135deg, var(--surface), var(--surface2));
}
.project-thumb img, .project-thumb video { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.project-card:hover .project-thumb img, .project-card:hover .project-thumb video { transform: scale(1.06); }
.project-thumb-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--muted); }
.project-links {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,5,16,.95), transparent 50%);
  display: flex; align-items: flex-end; padding: 1rem; gap: 8px;
  opacity: 0; transition: opacity .3s;
}
.project-card:hover .project-links { opacity: 1; }
.project-link-btn {
  padding: 6px 14px; border-radius: 8px; font-size: .78rem; font-weight: 700;
  text-decoration: none; display: inline-flex; align-items: center; gap: 5px;
}
.project-link-btn.primary { background: var(--gradient); color: white; }
.project-link-btn.outline { background: rgba(255,255,255,.12); color: white; border: 1px solid rgba(255,255,255,.2); }
.project-body { padding: 1.2rem; }
.project-cat { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--secondary); margin-bottom: .4rem; }
.project-title { font-size: 1.05rem; font-weight: 700; margin-bottom: .4rem; }
.project-desc { font-size: .86rem; color: var(--soft); line-height: 1.65; margin-bottom: .75rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.project-stack { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: .7rem; }
.tech-pill { padding: 3px 9px; background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.22); border-radius: 999px; font-size: .73rem; font-weight: 600; color: var(--primary-light); }
.project-result { font-size: .8rem; color: var(--green); font-weight: 700; display: flex; align-items: center; gap: 5px; }

/* ── Services ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at top left, rgba(124,58,237,.1), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.service-card:hover { border-color: rgba(124,58,237,.4); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(124,58,237,.15); }
.service-card:hover::before { opacity:1; }
.svc-icon {
  width: 52px; height: 52px; background: rgba(124,58,237,.12); border: 1px solid rgba(124,58,237,.22);
  border-radius: 13px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--primary-light); margin-bottom: 1.2rem; transition: var(--transition);
}
.service-card:hover .svc-icon { background: rgba(124,58,237,.2); box-shadow: 0 0 20px rgba(124,58,237,.3); }
.svc-title { font-size: 1.05rem; font-weight: 700; margin-bottom: .65rem; }
.svc-desc { font-size: .88rem; color: var(--soft); line-height: 1.75; margin-bottom: 1.2rem; }
.svc-price { font-size: .82rem; font-weight: 700; color: var(--secondary); display: flex; align-items: center; gap: 6px; }

/* ── Stats ── */
.stats-band {
  background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-item { position: relative; padding: 0 1rem; }
.stat-item:not(:last-child)::after { content:''; position:absolute; right:0; top:15%; bottom:15%; width:1px; background:var(--border); }
.stat-val {
  font-family: var(--font-brand); font-size: 2.8rem; font-weight: 900; line-height: 1; display: block; margin-bottom: .5rem;
  background: var(--gradient-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-lbl { font-size: .88rem; color: var(--soft); font-weight: 500; }

/* ── Testimonials ── */
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 2rem; height: 100%;
}
.testi-stars { color: var(--accent); font-size: .85rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-quote { font-size: .98rem; color: var(--text); line-height: 1.85; margin-bottom: 1.5rem; font-style: italic; position: relative; }
.testi-quote::before { content:'\201C'; font-size: 3rem; color: rgba(168,85,247,.3); font-style:normal; line-height:1; position:absolute; top:-10px; left:-5px; font-family:Georgia,serif; }
.testi-client { display: flex; align-items: center; gap: 1rem; }
.client-av {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--border2); background: var(--surface2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--muted); overflow: hidden; flex-shrink: 0;
}
.client-name { font-weight: 700; font-size: .92rem; }
.client-role { font-size: .78rem; color: var(--soft); }

/* ── Contact ── */
.contact-info-card, .contact-form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.5rem; height: 100%;
}
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon {
  width: 44px; height: 44px; background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.22);
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; color: var(--primary-light); flex-shrink: 0;
}
.contact-lbl { font-size: .77rem; color: var(--soft); margin-bottom: 2px; }
.contact-val { font-weight: 600; font-size: .92rem; }
.social-row { display: flex; gap: .65rem; margin-top: 1.5rem; }
.social-btn {
  width: 40px; height: 40px; background: var(--surface2); border: 1px solid var(--border);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--soft); font-size: .95rem; text-decoration: none; transition: var(--transition);
}
.social-btn:hover { background: rgba(124,58,237,.15); border-color: var(--primary-light); color: var(--primary-light); transform: translateY(-3px); }
.form-lbl { font-size: .82rem; font-weight: 600; color: var(--soft); margin-bottom: 6px; display: block; }
.form-ctrl {
  width: 100%; padding: .78rem 1rem;
  background: var(--bg2) !important; border: 1px solid var(--border) !important;
  border-radius: 10px !important; color: var(--text) !important;
  font-size: .88rem !important; font-family: var(--font-body) !important;
  transition: border-color .25s, box-shadow .25s !important;
}
.form-ctrl::placeholder { color: var(--muted) !important; }
.form-ctrl:focus {
  outline: none !important; border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(124,58,237,.15) !important;
  background: var(--surface) !important;
}
.form-ctrl.select-ctrl { appearance: none; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important; background-repeat: no-repeat !important; background-position: right 12px center !important; background-size: 14px !important; cursor: pointer; }
.form-ctrl.select-ctrl option { background: var(--surface2); }
textarea.form-ctrl { resize: none; }
.btn-submit {
  width: 100%; padding: .9rem; background: var(--gradient); border: none; border-radius: 12px;
  color: white; font-size: .98rem; font-weight: 700; font-family: var(--font-body);
  cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 0 28px rgba(124,58,237,.35);
}
.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(124,58,237,.55); }
.btn-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
#form-msg { display: none; }
#form-msg.show { display: block; }

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 56px; height: 56px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
  color: white; text-decoration: none; box-shadow: 0 8px 28px rgba(37,211,102,.4);
  animation: waFloat 3s ease-in-out infinite; transition: transform .3s, box-shadow .3s;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 12px 40px rgba(37,211,102,.6); color: white; }
@keyframes waFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.wa-float:hover { animation: none; }

/* ── Footer ── */
footer {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 2rem 0; text-align: center;
}
.footer-text { font-size: .83rem; color: var(--muted); }
.footer-text a { color: var(--primary-light); text-decoration: none; }

/* ── Alert ── */
.alert { border-radius: 12px; padding: .9rem 1.2rem; margin-bottom: 1rem; font-size: .9rem; }
.alert-success { background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.25); color: #6ee7b7; }
.alert-danger   { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.25); color: #fca5a5; }
.alert-info     { background: rgba(6,182,212,.08); border: 1px solid rgba(6,182,212,.25); color: #67e8f9; }

/* ── AOS overrides ── */
[data-aos] { transition-property: opacity, transform !important; }
[data-aos="fade-up"] {
    transform: translate3d(0, 85px, 0) scale(.97);
}
[data-aos="fade-up"].aos-animate {
    transform: translate3d(0, 0, 0) scale(1);
}

@media (min-width: 992px) {
    .about-img {
        object-fit: contain;
        object-position: center;
        background: var(--surface);
    }
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .skills-grid { grid-template-columns: 1fr; }
  .stats-grid  { grid-template-columns: repeat(2,1fr); }
  .hero-visual { margin-top: 3rem; }
  .about-img, .about-placeholder { width: 100%; max-width: 380px; height: 300px; }
  .code-card   { max-width: 100%; }
}
@media (max-width: 767.98px) {
  .section { padding: 70px 0; }
  .projects-grid  { grid-template-columns: 1fr; }
  .services-grid  { grid-template-columns: 1fr; }
  .hero-cta       { flex-direction: column; align-items: flex-start; }
  .hero-stats     { gap: 1.5rem; }
  .floating-tag.tr, .floating-tag.bl { display: none; }
}
@media (max-width: 575.98px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-val   { font-size: 2.2rem; }
}
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none !important; } body.has-cursor { cursor: auto !important; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration:.001ms !important; transition-duration:.001ms !important; } }


/* ================================================================
   ADMIN PANEL
   ================================================================ */

.admin-body { overflow: auto; }
.admin-layout { display: flex; min-height: 100vh; }

/* Sidebar */
.admin-sidebar {
  width: 250px; background: var(--surface); border-right: 1px solid var(--border);
  display: flex; flex-direction: column; position: fixed; top: 0; left: 0;
  height: 100vh; z-index: 200; overflow-y: auto; transition: transform .3s ease;
}
.sidebar-brand {
  padding: 1.4rem 1.2rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.brand-icon {
  width: 38px; height: 38px; background: var(--gradient); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-brand); font-weight: 900; font-size: 1.1rem; color: white; flex-shrink: 0;
}
.brand-name { font-family: var(--font-brand); font-weight: 700; font-size: 1rem; line-height: 1.2; }
.brand-name span { display: block; font-size: .7rem; font-weight: 400; color: var(--soft); }
.admin-nav { padding: .8rem; flex: 1; }
.nav-section-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); padding: .5rem .75rem; margin-top: .3rem; }
.admin-nav-link {
  display: flex; align-items: center; gap: 9px; padding: .6rem .9rem;
  border-radius: 9px; color: var(--soft); text-decoration: none;
  font-size: .86rem; font-weight: 500; transition: var(--transition); margin-bottom: 1px;
}
.admin-nav-link i { font-size: .98rem; width: 18px; text-align: center; flex-shrink: 0; }
.admin-nav-link:hover { background: rgba(255,255,255,.04); color: var(--text); }
.admin-nav-link.active { background: rgba(124,58,237,.14); color: var(--primary-light); border: 1px solid rgba(124,58,237,.18); }
.nav-count { margin-left: auto; background: rgba(124,58,237,.18); color: var(--primary-light); font-size: .68rem; font-weight: 700; padding: 2px 7px; border-radius: 999px; }
.sidebar-footer { padding: 1rem; border-top: 1px solid var(--border); }

/* Main content */
.admin-main { flex: 1; margin-left: 250px; display: flex; flex-direction: column; min-height: 100vh; }
.admin-topbar {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: .85rem 1.4rem; display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
}
.topbar-title { font-family: var(--font-brand); font-size: 1rem; font-weight: 700; }
.topbar-actions { display: flex; align-items: center; gap: .75rem; }
.admin-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.2rem; cursor: pointer; padding: 4px; }
.admin-content { padding: 1.4rem; flex: 1; }

/* Admin section panels */
.admin-panel { display: none; }
.admin-panel.active { display: block; }

/* Stat cards */
.admin-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; margin-bottom: 1.8rem; }
.astat-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.2rem; display: flex; align-items: center; gap: 1rem; transition: var(--transition);
}
.astat-card:hover { border-color: var(--border2); transform: translateY(-2px); }
.astat-icon { width: 46px; height: 46px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.astat-icon.purple { background: rgba(124,58,237,.14); color: var(--primary-light); }
.astat-icon.cyan   { background: rgba(6,182,212,.14);  color: var(--secondary); }
.astat-icon.green  { background: rgba(16,185,129,.14); color: var(--green); }
.astat-icon.amber  { background: rgba(245,158,11,.14); color: var(--accent); }
.astat-val  { font-family: var(--font-brand); font-size: 1.7rem; font-weight: 800; line-height: 1; margin-bottom: 3px; }
.astat-lbl  { font-size: .78rem; color: var(--soft); }

/* Admin Card */
.acard {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.4rem;
}
.acard-header {
  padding: .9rem 1.4rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.015);
}
.acard-title { font-family: var(--font-brand); font-weight: 700; font-size: .95rem; display: flex; align-items: center; gap: 8px; }
.acard-body  { padding: 1.4rem; }

/* Admin form */
.aform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.aform-group { margin-bottom: .9rem; }
.aform-group.full { grid-column: span 2; }
.a-label { font-size: .78rem; font-weight: 600; color: var(--soft); margin-bottom: 5px; display: block; }
.a-input, .a-textarea, .a-select {
  width: 100%; padding: .62rem .9rem;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text);
  font-size: .86rem; font-family: var(--font-body); transition: var(--transition);
}
.a-input:focus, .a-textarea:focus, .a-select:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124,58,237,.14);
}
.a-textarea { resize: vertical; min-height: 85px; }
.a-select   { cursor: pointer; }

/* File upload */
.file-drop {
  position: relative; border: 1.5px dashed var(--border2); border-radius: 10px;
  padding: 1.5rem 1rem; text-align: center; cursor: pointer;
  background: var(--bg2); transition: var(--transition);
}
.file-drop:hover { border-color: var(--primary); background: rgba(124,58,237,.03); }
.file-drop input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-drop-icon  { font-size: 1.5rem; color: var(--muted); display: block; margin-bottom: 6px; }
.file-drop-text  { font-size: .8rem; color: var(--soft); }
.file-drop-text strong { color: var(--primary-light); }
.current-media {
  display: flex; align-items: center; gap: 8px; margin-top: 6px;
  padding: 7px 10px; background: var(--bg2); border: 1px solid var(--border); border-radius: 8px;
  font-size: .78rem; color: var(--soft);
}
.current-media img { width: 48px; height: 38px; object-fit: cover; border-radius: 5px; }
.current-media .cm-link { color: var(--primary-light); text-decoration: none; word-break: break-all; }

/* Buttons */
.btn-save {
  padding: .62rem 1.4rem; background: var(--gradient); border: none; border-radius: 8px;
  color: white; font-weight: 700; font-size: .86rem; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px; transition: var(--transition);
}
.btn-save:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(124,58,237,.4); }
.btn-del {
  padding: .48rem .9rem; background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.25);
  border-radius: 7px; color: #f87171; font-size: .78rem; font-weight: 600;
  cursor: pointer; display: inline-flex; align-items: center; gap: 5px; transition: var(--transition);
}
.btn-del:hover { background: rgba(239,68,68,.2); border-color: rgba(239,68,68,.45); }
.btn-edit {
  padding: .48rem .9rem; background: var(--surface2); border: 1px solid var(--border);
  border-radius: 7px; color: var(--text); font-size: .78rem; font-weight: 600;
  cursor: pointer; display: inline-flex; align-items: center; gap: 5px; transition: var(--transition);
}
.btn-edit:hover { border-color: var(--border2); }

/* Table */
.a-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.a-table th {
  padding: .7rem 1rem; border-bottom: 1px solid var(--border); text-align: left;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em;
  color: var(--muted); background: rgba(255,255,255,.015); white-space: nowrap;
}
.a-table td { padding: .85rem 1rem; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: middle; }
.a-table tr:last-child td { border-bottom: none; }
.a-table tr:hover td { background: rgba(255,255,255,.013); }
.tbl-thumb { width: 48px; height: 38px; object-fit: cover; border-radius: 6px; background: var(--surface2); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--muted); }

/* Admin login */
.al-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--bg); padding: 2rem; position: relative; overflow: hidden;
}
.al-orb { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; }
.al-orb-1 { width: 500px; height: 500px; background: rgba(124,58,237,.25); top: -150px; left: -150px; animation: orbFloat 10s ease-in-out infinite; }
.al-orb-2 { width: 350px; height: 350px; background: rgba(6,182,212,.18); bottom: -100px; right: -100px; animation: orbFloat 10s ease-in-out infinite -5s; }
.al-card {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--radius-xl); padding: 2.5rem; width: 100%; max-width: 400px;
  position: relative; z-index: 1; box-shadow: 0 40px 80px rgba(0,0,0,.5);
}
.al-logo { text-align: center; margin-bottom: 2rem; }
.al-logo-icon {
  width: 60px; height: 60px; background: var(--gradient); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-brand); font-weight: 900; font-size: 1.5rem; color: white;
  margin: 0 auto 1rem;
}
.al-title { font-size: 1.5rem; font-weight: 800; margin-bottom: .3rem; text-align: center; }
.al-sub { color: var(--soft); font-size: .88rem; text-align: center; }

/* Responsive admin */
@media (max-width: 991.98px) {
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); box-shadow: 20px 0 60px rgba(0,0,0,.5); }
  .admin-main { margin-left: 0; }
  .admin-toggle { display: block; }
  .admin-stats { grid-template-columns: repeat(2,1fr); }
  .aform-grid { grid-template-columns: 1fr; }
  .aform-group.full { grid-column: span 1; }
}
@media (max-width: 575.98px) {
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .admin-content { padding: 1rem; }
}
:root {
    --bg: #0f0f0f;
    --bg-deep: #090909;
    --panel: rgba(18, 18, 18, 0.72);
    --panel-soft: rgba(255, 255, 255, 0.04);
    --line: rgba(255, 255, 255, 0.12);
    --text: #f7f1e8;
    --muted: rgba(247, 241, 232, 0.74);
    --soft: rgba(247, 241, 232, 0.56);
    --accent: #ff6a00;
    --accent-2: #ffb703;
    --shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
    --radius-lg: 30px;
    --radius-md: 22px;
    --radius-sm: 18px;
    --container-max: 1240px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 106, 0, 0.2), transparent 22%),
        radial-gradient(circle at 88% 12%, rgba(255, 183, 3, 0.12), transparent 20%),
        radial-gradient(circle at 70% 72%, rgba(255, 106, 0, 0.08), transparent 26%),
        linear-gradient(180deg, #0b0b0b 0%, #101010 45%, #131313 100%);
    font-family: "Outfit", sans-serif;
    overflow-x: hidden;
}

::selection {
    color: #111;
    background: rgba(255, 183, 3, 0.85);
}

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

.container {
    max-width: var(--container-max);
}

.page-noise,
.page-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

.page-noise {
    opacity: 0.08;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px),
        radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px);
    background-size: 18px 18px, 24px 24px;
    mix-blend-mode: soft-light;
}

.page-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, black 45%, transparent 90%);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 28px rgba(255, 183, 3, 0.7);
    z-index: 9999;
}

.cursor-ring,
.cursor-dot {
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    opacity: 0;
    will-change: transform, left, top, opacity;
}

.cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 183, 3, 0.65);
    border-radius: 50%;
    transition: transform 0.18s ease, width 0.18s ease, height 0.18s ease, opacity 0.22s ease;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 18px rgba(255, 106, 0, 0.9);
    transition: opacity 0.22s ease;
}

body.has-custom-cursor {
    cursor: none;
}

body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor [role="button"] {
    cursor: none;
}

.portfolio-nav {
    padding: 1rem 0;
    background: linear-gradient(180deg, rgba(8, 8, 8, 0.88), rgba(8, 8, 8, 0.58));
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.25s ease, backdrop-filter 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease, border-color 0.25s ease;
}

.portfolio-nav.scrolled {
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(22px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    padding: 0.75rem 0;
}

.portfolio-nav .navbar-brand,
.portfolio-nav .nav-link {
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.portfolio-nav .navbar-brand {
    color: var(--text);
}

.portfolio-nav .navbar-brand:hover,
.portfolio-nav .navbar-brand:focus {
    color: var(--text);
}

.portfolio-nav .navbar-nav {
    gap: 0.25rem;
}

.portfolio-nav .nav-link {
    position: relative;
    padding: 0.48rem 0.72rem;
    border-radius: 999px;
    color: rgba(247, 241, 232, 0.76);
    font-weight: 500;
    transition: color 0.22s ease, background 0.22s ease;
}

.portfolio-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0.72rem;
    right: 0.72rem;
    bottom: 0.28rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    opacity: 0;
    transform: scaleX(0.4);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.portfolio-nav .nav-link:hover,
.portfolio-nav .nav-link:focus,
.portfolio-nav .nav-link.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.portfolio-nav .nav-link:hover::after,
.portfolio-nav .nav-link:focus::after,
.portfolio-nav .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.brand-mark,
.navbar .nav-link,
.hero-title,
.section-title,
.result-value,
.feature-project h3,
.hero-showcase-panel h2 {
    font-family: "Space Grotesk", sans-serif;
}

.brand-mark {
    font-size: 1.15rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
}

.nav-link {
    color: rgba(247, 241, 232, 0.74);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--text);
}

.btn {
    border-radius: 999px;
    padding-inline: 1.2rem;
}

.btn-glow,
.btn-ghost {
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-glow::after,
.btn-ghost::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -30%;
    width: 42%;
    height: 340%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: rotate(18deg) translateX(-220%);
    pointer-events: none;
}

.btn-glow:hover::after,
.btn-ghost:hover::after,
.btn-glow:focus-visible::after,
.btn-ghost:focus-visible::after {
    animation: shimmerSweep 1s ease;
}

.btn-glow {
    border: none;
    color: #0d0d0d;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    box-shadow: 0 20px 50px rgba(255, 106, 0, 0.28);
}

.btn-glow:hover,
.btn-glow:focus {
    color: #0d0d0d;
    transform: translateY(-2px);
    box-shadow: 0 24px 58px rgba(255, 106, 0, 0.4);
}

.btn-ghost {
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover,
.btn-ghost:focus {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.24);
}

.glass-card,
.admin-login-card,
.admin-header,
.admin-item-card,
.lead-form {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
        rgba(13, 13, 13, 0.58);
    backdrop-filter: blur(24px);
    box-shadow: var(--shadow);
}

.spotlight-card {
    position: relative;
    overflow: hidden;
}

.spotlight-card::before {
    content: "";
    position: absolute;
    inset: -30%;
    background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 255, 255, 0.18), transparent 30%);
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
}

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

.hero-section {
    position: relative;
    min-height: max(640px, calc(100vh - 10px));
    display: flex;
    align-items: center;
    padding: 6.4rem 0 3rem;
    overflow: hidden;
}

.hero-section > .container {
    width: 100%;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.8;
}

.orb-one {
    top: 10%;
    left: -4%;
    width: 320px;
    height: 320px;
    background: rgba(255, 106, 0, 0.2);
    animation: float 10s ease-in-out infinite;
}

.orb-two {
    right: -2%;
    bottom: 8%;
    width: 280px;
    height: 280px;
    background: rgba(255, 183, 3, 0.16);
    animation: float 12s ease-in-out infinite reverse;
}

.orb-three {
    top: 50%;
    left: 44%;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.06);
    animation: float 9s ease-in-out infinite;
}

.hero-shell {
    padding: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    background:
        radial-gradient(circle at 20% 16%, rgba(255, 183, 3, 0.08), transparent 36%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(12, 12, 12, 0.35));
    transform: translateZ(0);
    will-change: transform;
    animation: breathe 8s ease-in-out infinite;
}

.hero-shell--split {
    max-width: 1240px;
    margin: 0 auto;
}

.hero-shell--split .row {
    align-items: stretch;
}

.hero-shell--split .hero-showcase {
    height: 100%;
}

.hero-shell--solo {
    max-width: 980px;
    margin: 0 auto;
}

.hero-shell--solo .hero-copy {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badge,
.section-kicker,
.trust-chip,
.admin-note,
.project-tag,
.hero-proof-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1;
}

.hero-badge {
    letter-spacing: 0.04em;
}

.hero-title {
    margin: 1rem 0 0;
    font-size: clamp(3.2rem, 7vw, 6rem);
    line-height: 0.93;
    letter-spacing: -0.05em;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(90deg, #ffb066 0%, #ffb703 45%, #fff1cf 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#heroRotator {
    display: inline-block;
}

.rotator-word {
    animation: wordUpIn 0.35s ease;
}

.hero-copy,
.section-copy,
.about-panel p,
.process-card p,
.timeline-content p,
.feature-project p,
.project-card p,
.service-card p,
.testimonial-card p,
.result-card p,
.form-note,
.hero-showcase-panel p {
    color: var(--muted);
    line-height: 1.8;
}

.hero-copy,
.section-copy {
    max-width: 680px;
    font-size: 1.08rem;
}

.section-copy-lg {
    max-width: 820px;
}

.section-copy-sm {
    max-width: 430px;
}

.hero-actions {
    margin-top: 2rem;
}

.hero-proof-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.hero-proof-pill {
    background: rgba(255, 255, 255, 0.035);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.7rem;
}

.hero-stat-card,
.about-panel,
.process-card,
.result-card,
.contact-step,
.feature-stat-card,
.offer-item {
    padding: 1.1rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.035);
}

.hero-stat-card strong,
.result-value,
.contact-step strong,
.feature-stat-card strong,
.offer-item strong,
.timeline-content h3,
.project-card h3,
.service-card h3,
.testimonial-head h3,
.process-card h3,
.about-panel h3 {
    display: block;
    color: var(--text);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
}

.hero-stat-card strong {
    font-size: 1.75rem;
}

.hero-stat-card span,
.feature-meta span,
.project-stack,
.project-accent,
.testimonial-head span,
.contact-list,
.service-price,
.timeline-meta,
.footer-meta,
.offer-item span,
.hero-showcase-meta span,
.about-subcopy {
    color: var(--soft);
}

.hero-showcase {
    display: grid;
    gap: 1rem;
}

.hero-showcase-frame {
    min-height: 420px;
    will-change: transform;
    transition: transform 0.25s ease-out;
}

.hero-shell--split .hero-showcase-frame {
    min-height: 500px;
}

.hero-showcase-panel {
    padding: 1.2rem;
    border-radius: 24px;
}

.hero-showcase-panel h2 {
    margin: 0.95rem 0 0.55rem;
    font-size: 1.5rem;
    line-height: 1.05;
}

.hero-showcase-meta {
    display: grid;
    gap: 0.7rem;
    margin-top: 1rem;
}

.hero-showcase-meta span,
.contact-list a,
.contact-list span {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.media-frame {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.2));
}

.media-frame--wide {
    min-height: 380px;
}

.media-frame--portrait {
    min-height: 520px;
}

.media-frame__asset {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    border: 0;
    object-fit: cover;
}

.media-frame__embed {
    min-height: 380px;
}

.media-frame__placeholder {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    height: 100%;
    min-height: inherit;
    padding: 1.5rem;
    text-align: center;
    color: var(--soft);
    background:
        radial-gradient(circle at top, rgba(255, 183, 3, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.22));
}

.media-frame__placeholder-copy {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 1rem 1.1rem;
    text-align: left;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.68));
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
}

.media-frame__placeholder strong {
    color: var(--text);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.08rem;
}

.media-frame__placeholder span {
    line-height: 1.7;
}

.media-frame__placeholder-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.25), rgba(255, 183, 3, 0.16));
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 1.3rem;
}

.media-frame__mock-window {
    width: min(86%, 460px);
    padding: 0.9rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.media-frame__mock-bar {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
}

.media-frame__mock-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
}

.media-frame__mock-body {
    display: grid;
    gap: 0.85rem;
}

.media-frame__mock-feature {
    height: 180px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 25% 20%, rgba(255, 183, 3, 0.28), transparent 28%),
        linear-gradient(135deg, rgba(255, 106, 0, 0.24), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.media-frame__mock-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.media-frame__mock-grid span,
.media-frame__mock-lines span {
    display: block;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
}

.media-frame__mock-grid span {
    height: 68px;
}

.media-frame__mock-lines {
    display: grid;
    gap: 0.55rem;
}

.media-frame__mock-lines span {
    height: 10px;
}

.media-frame__mock-lines span:nth-child(2) {
    width: 80%;
}

.media-frame__mock-lines span:nth-child(3) {
    width: 58%;
}

.trust-band {
    padding: 0 0 2.5rem;
}

.trust-band-shell {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.3rem 1.4rem;
}

.trust-band-copy {
    max-width: 720px;
}

.trust-band-copy p {
    margin: 0.9rem 0 0;
    color: var(--text);
    font-weight: 500;
    line-height: 1.7;
}

.trust-band-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

.section-space {
    padding: 6rem 0;
}

.section-heading {
    margin-bottom: 2rem;
}

.section-title {
    margin: 0.7rem 0 0;
    font-size: clamp(2.1rem, 4vw, 3.5rem);
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 700;
}

.identity-media-card,
.premium-side-card,
.feature-project,
.results-shell,
.contact-shell,
.lead-form {
    padding: 1.5rem;
}

.identity-media-frame {
    min-height: 100%;
}

.identity-fallback {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 2rem;
    text-align: center;
    background:
        radial-gradient(circle at top, rgba(255, 183, 3, 0.14), transparent 25%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.2));
}

.identity-avatar {
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.28), rgba(255, 183, 3, 0.2));
    font-family: "Space Grotesk", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
}

.identity-fallback-copy strong {
    display: block;
    color: var(--text);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.2rem;
}

.identity-fallback-copy span {
    display: block;
    max-width: 320px;
    margin-top: 0.5rem;
    color: var(--soft);
    line-height: 1.7;
}

.about-subcopy {
    margin: 1.2rem 0 0;
    font-size: 1rem;
}

.about-grid,
.contact-steps,
.offer-list,
.hero-showcase-meta {
    display: grid;
    gap: 1rem;
}

.about-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.8rem;
}

.about-number,
.service-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 0.8rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.2), rgba(255, 183, 3, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
}

.process-topline,
.project-top,
.service-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.process-icon,
.project-arrow,
.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.18), rgba(255, 183, 3, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-card h3,
.about-panel h3,
.premium-side-card h3,
.project-card h3,
.service-card h3 {
    margin: 1rem 0 0.45rem;
    font-size: 1.08rem;
}

.timeline {
    position: relative;
    display: grid;
    gap: 1.2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5px;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 106, 0, 0.9), rgba(255, 183, 3, 0.06));
}

.timeline-item {
    position: relative;
    padding: 1.4rem 1.4rem 1.4rem 2.7rem;
}

.timeline-badge {
    position: absolute;
    top: 1.7rem;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 24px rgba(255, 183, 3, 0.5);
}

.timeline-content h3 {
    margin: 0.35rem 0 0.2rem;
    font-size: 1.25rem;
}

.timeline-content h4 {
    margin: 0;
    color: rgba(247, 241, 232, 0.88);
    font-size: 0.98rem;
}

.premium-side-card h3 {
    margin-top: 1rem;
    font-size: 1.45rem;
    line-height: 1.1;
}

.offer-list {
    margin-top: 1.4rem;
}

.offer-item strong {
    font-size: 1rem;
}

.feature-project {
    margin-bottom: 1.5rem;
}

.feature-project-copy {
    max-width: 540px;
}

.feature-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.2rem;
}

.feature-meta span {
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin: 1.3rem 0 1.4rem;
}

.feature-stat-card span {
    display: block;
    margin-top: 0.35rem;
    color: var(--soft);
    line-height: 1.6;
    font-size: 0.92rem;
}

.project-card,
.service-card,
.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    height: 100%;
    padding: 1.4rem;
}

.project-card-media {
    min-height: 220px;
    margin-bottom: 0.2rem;
}

.project-card-media .media-frame__asset,
.project-card-media .media-frame__placeholder {
    min-height: 220px;
}

.project-card-media-badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    font-size: 0.84rem;
    backdrop-filter: blur(16px);
}

.project-result {
    color: var(--text);
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
}

.service-price {
    margin-top: auto;
    font-weight: 600;
}

.results-lead-copy {
    margin-bottom: 0;
}

.testimonial-marquee {
    overflow: hidden;
    padding: 0.5rem 0 0.25rem;
}

.testimonial-track {
    display: flex;
    gap: 1.2rem;
    width: max-content;
    animation: marquee 34s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
    animation-play-state: paused;
}

.testimonial-card {
    width: min(370px, 88vw);
}

.testimonial-head {
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.testimonial-head img,
.testimonial-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-avatar {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.32), rgba(255, 183, 3, 0.2));
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
}

.contact-shell {
    padding: 1.5rem;
}

.contact-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.lead-form {
    padding: 1.35rem;
}

.contact-step strong {
    font-size: 0.92rem;
    margin-bottom: 0.3rem;
}

.form-control {
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.055);
    color: var(--text);
    padding: 0.92rem 1rem;
    border-radius: 18px;
}

.form-control::placeholder {
    color: rgba(247, 241, 232, 0.42);
}

.form-control:focus {
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 183, 3, 0.48);
    box-shadow: 0 0 0 0.25rem rgba(255, 183, 3, 0.1);
}

.form-label {
    color: rgba(247, 241, 232, 0.8);
}

.floating-whatsapp,
.sticky-hire {
    position: fixed;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
}

.floating-whatsapp {
    right: 1.15rem;
    bottom: 1.15rem;
    width: 60px;
    height: 60px;
    font-size: 1.7rem;
    color: #fff;
    background: linear-gradient(135deg, #00c853, #46d96c);
}

.sticky-hire {
    left: 50%;
    bottom: 1.2rem;
    transform: translateX(-50%);
    padding: 0.88rem 1.3rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(20px);
}

.site-footer {
    padding: 1.8rem 0 2.6rem;
    color: var(--soft);
}

.footer-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.glass-alert {
    margin-bottom: 1.5rem;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(18, 18, 18, 0.76);
    color: var(--text);
}

.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.2s ease;
}

.js-enhanced .motion-item {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.js-enhanced .motion-item.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.count-pop {
    animation: wordUpIn 0.3s ease;
}

.admin-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(255, 106, 0, 0.2), transparent 24%),
        radial-gradient(circle at left center, rgba(255, 183, 3, 0.08), transparent 22%),
        #101010;
}

.admin-page-shell {
    max-width: 1320px;
}

.admin-login-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1.5rem;
}

.admin-login-card {
    width: min(560px, 100%);
    padding: 2rem;
}

.admin-section,
.admin-header {
    padding: 1.5rem;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
}

.admin-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.admin-metric-card {
    padding: 1.1rem 1.2rem;
    border-radius: 20px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.admin-metric-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 183, 3, 0.36);
}

.admin-metric-label {
    display: inline-block;
    color: var(--soft);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admin-metric-card strong {
    display: block;
    margin-top: 0.6rem;
    color: var(--text);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.35rem;
    line-height: 1.2;
}

.admin-metric-card small {
    display: block;
    margin-top: 0.45rem;
    color: var(--muted);
    line-height: 1.5;
}

.admin-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    padding: 0.9rem;
    border-radius: 20px;
}

.admin-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.38rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-size: 0.82rem;
}

.admin-requirement-cell {
    max-width: 460px;
    color: var(--muted);
}

.admin-source-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 183, 3, 0.35);
    background: rgba(255, 183, 3, 0.12);
    color: var(--text);
    font-size: 0.8rem;
    text-transform: capitalize;
}

.admin-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 0.9rem;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.admin-chip:hover,
.admin-chip:focus {
    color: var(--text);
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 183, 3, 0.45);
    transform: translateY(-1px);
}

.admin-help {
    display: block;
    margin-top: 0.45rem;
    color: var(--soft);
    line-height: 1.5;
}

.admin-help a {
    color: var(--text);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.admin-item-card {
    padding: 1.2rem;
}

.table-dark {
    --bs-table-bg: transparent;
    --bs-table-striped-bg: rgba(255, 255, 255, 0.04);
    --bs-table-hover-bg: rgba(255, 255, 255, 0.06);
}

.table-dark thead th {
    color: rgba(247, 241, 232, 0.78);
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom-color: rgba(255, 255, 255, 0.14);
}

.table-dark tbody td {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

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

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

@keyframes shimmerSweep {
    0% {
        transform: rotate(18deg) translateX(-220%);
    }
    100% {
        transform: rotate(18deg) translateX(450%);
    }
}

@keyframes wordUpIn {
    0% {
        opacity: 0;
        transform: translateY(9px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (pointer: coarse) {
    .cursor-ring,
    .cursor-dot {
        display: none;
    }
}

@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;
    }

    .hero-shell {
        animation: none;
    }

    .testimonial-track {
        animation: none;
        transform: translateX(0);
    }
}

@media (max-width: 1199.98px) {
    .about-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 6rem 0 2.4rem;
    }

    .portfolio-nav .navbar-collapse {
        margin-top: 0.7rem;
        padding: 0.9rem;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(9, 9, 9, 0.9);
        backdrop-filter: blur(14px);
    }

    .portfolio-nav .navbar-nav {
        gap: 0.45rem;
    }

    .portfolio-nav .nav-link {
        padding: 0.55rem 0.72rem;
    }

    .hero-shell {
        animation: none;
    }

    .hero-shell,
    .identity-media-card,
    .premium-side-card,
    .feature-project,
    .results-shell,
    .contact-shell {
        padding: 1.3rem;
    }

    .hero-stats,
    .about-grid,
    .feature-stats {
        grid-template-columns: 1fr;
    }

    .hero-shell--split .hero-proof-list,
    .hero-shell--split .hero-actions {
        justify-content: flex-start;
    }

    .hero-shell--split .hero-showcase-frame {
        min-height: 320px;
    }

    .trust-band-shell {
        justify-content: flex-start;
    }

    .sticky-hire {
        width: calc(100% - 2rem);
    }

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

    .admin-header {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .section-space {
        padding: 4.6rem 0;
    }

    .hero-section {
        padding: 5.5rem 0 2.2rem;
    }

    .hero-shell,
    .identity-media-card,
    .premium-side-card,
    .feature-project,
    .results-shell,
    .contact-shell,
    .lead-form,
    .admin-login-card,
    .admin-section,
    .admin-header {
        padding: 1.2rem;
    }

    .hero-title {
        font-size: clamp(2.8rem, 14vw, 4.3rem);
    }

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

    .admin-toolbar {
        padding: 0.8rem;
    }

    .btn-glow::after,
    .btn-ghost::after {
        display: none;
    }

    .about-grid,
    .feature-stats {
        grid-template-columns: 1fr;
    }

    .footer-meta {
        flex-wrap: wrap;
    }

    .media-frame--portrait {
        min-height: 360px;
    }

    .identity-fallback {
        min-height: 360px;
    }

    .hero-showcase-frame,
    .media-frame--wide {
        min-height: 280px;
    }

    .media-frame__mock-window {
        width: 100%;
    }

    .media-frame__mock-feature {
        height: 120px;
    }

    .media-frame__placeholder-copy {
        right: 0.8rem;
        bottom: 0.8rem;
        left: 0.8rem;
    }
}

/* ── Mobile Right Drawer ── */
/* ── Mobile Right Drawer ── */
.nav-drawer-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 1049;
    opacity: 0; pointer-events: none;
    transition: opacity .35s ease;
}
.nav-drawer {
    display: none;
    position: fixed; top: 0; right: 0; bottom: 0;
    left: auto !important;
    width: min(280px, 45vw);
    background: rgba(8,8,18,.97);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-left: 1px solid rgba(255,255,255,.1);
    z-index: 1050;
    flex-direction: column;
    padding: 1rem;
    /* Off-screen right + invisible — dual guarantee */
    transform: translateX(110%);
    visibility: hidden;
    transition: transform .35s cubic-bezier(0.4,0,0.2,1),
                            visibility 0s linear .35s;
    overflow-y: auto;
}
/* Only show on mobile/tablet */
@media (max-width: 991.98px) {
    .nav-drawer-overlay { display: block; }
    .nav-drawer          { display: flex; }
}
/* Overlay open */
.nav-drawer-overlay.open {
    opacity: 1; pointer-events: auto;
}
/* Drawer open */
.nav-drawer.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform .35s cubic-bezier(0.4,0,0.2,1),
                            visibility 0s linear 0s;
}
.nav-drawer-close {
  background: none;
  border: 1px solid rgba(255,255,255,.12); border-radius: 8px;
  color: var(--soft); font-size: 1rem; cursor: pointer;
  padding: 5px 9px; flex-shrink: 0;
  transition: color .2s, border-color .2s, background .2s;
  display: flex; align-items: center; justify-content: center;
}
.nav-drawer-close:hover { color: #fff; border-color: rgba(124,58,237,.5); background: rgba(124,58,237,.12); }
.nav-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.2rem; padding-bottom: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-drawer-brand {
  font-family: var(--font-brand); font-weight: 800; font-size: 1.05rem;
  background: var(--gradient-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.nav-drawer-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .2rem;
}
.nav-drawer-link {
  display: block;
  color: var(--soft) !important;
  font-weight: 500; font-size: .92rem;
  padding: .65rem .9rem !important;
  border-radius: 9px; text-decoration: none;
  transition: color .2s, background .2s !important;
}
.nav-drawer-link:hover,
.nav-drawer-link.active {
  color: var(--text) !important;
  background: rgba(255,255,255,.06) !important;
}
.nav-drawer-link.btn-nav-hire {
  margin-top: .75rem;
  background: var(--gradient) !important;
  color: #fff !important; font-weight: 700 !important;
  text-align: center;
  box-shadow: 0 0 18px rgba(124,58,237,.3);
}
