/* ============================================================
   PORTFOLIO — STYLE.CSS  (Full Build with Author Section)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:ital,wght@0,300;0,400;0,500;1,300&display=swap');

[data-theme="dark"] {
  --bg: #080b10;
  --bg2: #0d1117;
  --bg3: #111820;
  --card: #12181f;
  --border: rgba(255, 255, 255, 0.08);
  --border-vis: rgba(255, 255, 255, 0.13);
  --accent: #1bd886;
  --accent2: #7b61ff;
  --accent3: #ff4d6d;
  --text: #e8edf2;
  --text-muted: #8899aa;
  --text-light: #b0bec5;
  --shadow: rgba(0, 0, 0, 0.5);
  /* --glow:       0 0 30px rgba(0,229,255,0.18); */
  --glow: 0 0 30px rgba(27, 216, 134, 0.3);
  --nav-bg: rgba(8, 11, 16, 0.88);
}

[data-theme="light"] {
  --bg: #f4f7fc;
  --bg2: #eaeff8;
  --bg3: #dde4f0;
  --card: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --border-vis: rgba(0, 0, 0, 0.14);
  --accent: #1bd886;
  --accent2: #6242d4;
  --accent3: #e8284a;
  --text: #0d1421;
  --text-muted: #5a6a80;
  --text-light: #7a8a9a;
  --shadow: rgba(0, 0, 0, 0.12);
  --glow: 0 0 30px rgba(0, 153, 204, 0.2);
  --nav-bg: rgba(244, 247, 252, 0.92);
}

:root {
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #1cd886, #108c56);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #24f29a, #15b06e);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 15px;
  overflow-x: hidden;
  transition: background .35s, color .35s
}

[data-theme="light"] body {
  cursor: auto
}

[data-theme="light"] .cursor-dot,
[data-theme="light"] .cursor-outline {
  display: none
}

::selection {
  background: var(--accent);
  color: var(--bg)
}

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

.section-pad {
  padding: 100px 0
}

/* ── NOISE ── */
.noise-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: .35
}

[data-theme="light"] .noise-overlay {
  opacity: .1
}

/* ── CURSOR ── */
.cursor-dot {
  display: none !important;
}

.cursor-outline {
  display: none !important;
}

.comet-tail {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.6s ease-out;
  opacity: 0.8;
}

/* ══ BACK TO TOP ══ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) var(--scroll-pct, 0%), rgba(27, 216, 134, 0.15) 0%);
  color: var(--accent);
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity .35s, visibility .35s, transform .35s, box-shadow .3s;
  box-shadow: 0 4px 20px rgba(27, 216, 134, 0.2);
}

.back-to-top::before {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--card);
  border-radius: 50%;
  z-index: -1;
  transition: background 0.3s;
}

.back-to-top i {
  z-index: 1;
}

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

.back-to-top:hover {
  box-shadow: 0 6px 30px rgba(27, 216, 134, 0.5);
  transform: translateY(-3px);
}

@media (max-width:576px) {
  .back-to-top {
    bottom: 20px;
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 15px;
  }
}

/* ── NAVBAR ── */
.navbar {
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  transition: all .3s;
  z-index: 1000;
  overflow: visible
}

.navbar.scrolled {
  padding: 10px 0;
  background: var(--bg2)
}

[data-theme="light"] .navbar.scrolled {
  background: rgba(244, 247, 252, .98)
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text) !important
}

.logo-text .accent {
  color: var(--accent)
}

.nav-links {
  list-style: none;
  gap: 32px;
  align-items: center;
  flex-wrap: nowrap
}

.nav-link-item {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  position: relative;
  transition: color .3s;
  white-space: nowrap
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .3s
}

.nav-link-item:hover {
  color: var(--accent)
}

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

.nav-link-item.active {
  color: var(--accent)
}

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

/* ══ DROPDOWN NAV — Gap Bug Fix ══
   The gap between the trigger text and the dropdown panel causes the
   mouse to leave .dropdown-nav briefly, hiding the menu. Fix:
   add a large padding-top to the dropdown itself so it overlaps the
   gap, and use ::before pseudo to fill the invisible bridge area.
*/
.dropdown-nav {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  /* closer — less gap */
  left: -20px;
  background: var(--card);
  border: 1px solid var(--border-vis);
  border-radius: 14px;
  padding: 8px;
  min-width: 240px;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  box-shadow: 0 20px 60px var(--shadow);
  /* Invisible top padding acts as a bridge so moving mouse downward stays inside */
  padding-top: 14px;
}

/* Invisible pseudo bridge fills the gap between trigger and panel */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
  background: transparent;
}

.dropdown-nav:hover .nav-dropdown,
.nav-dropdown:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 13px;
  transition: all .2s
}

.nav-dropdown a i {
  color: var(--accent);
  width: 16px;
  text-align: center
}

.nav-dropdown a:hover {
  background: rgba(0, 229, 255, .06);
  color: var(--accent)
}

/* Theme toggle, btn-dash, hamburger */
.theme-toggle {
  background: var(--card);
  border: 1px solid var(--border-vis);
  color: var(--text-muted);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 15px;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.theme-toggle:hover {
  border-color: var(--accent);
  color: var(--accent)
}

.btn-dash {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0, 229, 255, .3);
  padding: 8px 20px;
  border-radius: 50px;
  transition: all .3s;
  background: rgba(0, 229, 255, .05);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0
}

.btn-dash:hover {
  background: rgba(0, 229, 255, .12);
  border-color: var(--accent);
  box-shadow: var(--glow);
  color: var(--accent)
}

.hamburger {
  background: none;
  border: 1px solid var(--border-vis);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: border-color .3s;
  flex-shrink: 0
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s
}

.hamburger:hover {
  border-color: var(--accent)
}

.hamburger:hover span {
  background: var(--accent)
}

/* Mobile offcanvas */
.mobile-offcanvas {
  background: var(--bg2) !important;
  border-left: 1px solid var(--border-vis);
  max-width: 85vw !important;
  width: 300px !important
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--border)
}

.offcanvas-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color .3s
}

.offcanvas-close:hover {
  color: var(--accent3)
}

.offcanvas-body {
  padding: 20px 24px 24px
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px
}

.mobile-nav-list li {
  border-bottom: 1px solid var(--border)
}

.mob-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 14px 0;
  transition: color .3s;
  cursor: pointer
}

.mob-link:hover {
  color: var(--accent)
}

.mob-sub-list {
  list-style: none;
  padding: 0 0 10px 14px
}

.mob-sub-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
  padding: 9px 0;
  transition: color .3s
}

.mob-sub-list li a i {
  color: var(--accent);
  width: 16px
}

.mob-sub-list li a:hover {
  color: var(--accent)
}

.mob-social {
  display: flex;
  gap: 12px
}

.mob-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: all .3s
}

.mob-social a:hover {
  border-color: var(--accent);
  color: var(--accent)
}

/* ── BUTTONS ── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 0 20px rgba(0, 229, 255, .25)
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 229, 255, .45);
  color: var(--bg)
}

.btn-ghost-custom {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  border: 1px solid var(--border-vis);
  cursor: pointer;
  transition: all .3s
}

.btn-ghost-custom:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px)
}

/* ── SECTION LABELS ── */
.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--text);
  margin-bottom: 20px
}

.section-sub {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto
}

.text-muted-custom {
  color: var(--text-muted);
  font-size: 14px
}

/* ── HERO ── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 229, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 229, 255, .03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none
}

[data-theme="light"] .hero-bg-grid {
  background-image: linear-gradient(rgba(0, 153, 204, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 153, 204, .06) 1px, transparent 1px)
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none
}

.orb1 {
  width: 600px;
  height: 600px;
  background: rgba(0, 229, 255, .07);
  top: -200px;
  right: -100px
}

.orb2 {
  width: 400px;
  height: 400px;
  background: rgba(123, 97, 255, .08);
  bottom: -100px;
  left: -100px
}

.orb3 {
  width: 300px;
  height: 300px;
  background: rgba(255, 77, 109, .05);
  top: 50%;
  left: 40%
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 255, .07);
  border: 1px solid rgba(0, 229, 255, .2);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: .05em;
  margin-bottom: 30px
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #00e676;
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 230, 118, .4)
  }

  50% {
    box-shadow: 0 0 0 6px rgba(0, 230, 118, 0)
  }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 28px
}

.line-wrap {
  display: block;
  overflow: hidden;
  padding: 13px 0;
}

.line-inner {
  display: block
}

.highlight-word {
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
  text-shadow: 0 0 60px rgba(0, 229, 255, .3)
}

.hero-sub {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 460px
}

.typed-text {
  color: var(--accent)
}

.typed-cursor {
  color: var(--accent);
  animation: blink .8s infinite
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap
}

.stat {
  text-align: center
}

.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent)
}

.stat p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin: 0
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-vis)
}

.hero-avatar-wrap {
  position: relative;
  width: 380px;
  height: 380px;
  flex-shrink: 0
}

.avatar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, .15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin-ring 20s linear infinite
}

.ring1 {
  width: 100%;
  height: 100%
}

.ring2 {
  width: 130%;
  height: 130%;
  animation-direction: reverse;
  animation-duration: 30s
}

@keyframes spin-ring {
  to {
    transform: translate(-50%, -50%) rotate(360deg)
  }
}

.avatar-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bg3), var(--card));
  border: 2px solid rgba(0, 229, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow), inset 0 0 40px rgba(0, 229, 255, .05)
}

.avatar-placeholder {
  color: var(--accent);
  font-size: 4rem;
  opacity: .6
}

.float-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--border-vis);
  backdrop-filter: blur(12px);
  padding: 10px 18px;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  box-shadow: 0 8px 32px var(--shadow);
  animation: float 3s ease-in-out infinite;
  white-space: nowrap
}

.float-card i {
  color: var(--accent)
}

.fc1 {
  top: 15%;
  right: -15%;
  animation-delay: 0.3s
}

.fc2 {
  bottom: 5%;
  left: -5%;
  animation-delay: 1.2s
}

.fc3 {
  top: 50%;
  right: -25%;
  animation-delay: 0.6s
}

.fc4 {
  top: 15%;
  left: -15%;
  animation-delay: 1.8s
}

.fc5 {
  bottom: 5%;
  right: -5%;
  animation-delay: 0.9s
}

.fc6 {
  top: 50%;
  left: -25%;
  animation-delay: 1.5s
}

.fc7 {
  top: -5%;
  left: 15%;
  animation-delay: 0s
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: .1em;
  text-transform: uppercase
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-anim 2s ease-in-out infinite
}

@keyframes scroll-anim {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }

  50% {
    transform: scaleY(1);
    transform-origin: top
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 18px 0
}

.marquee-track {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content
}

.marquee-track span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em
}

.marquee-track .mdot {
  color: var(--accent);
  font-size: 8px
}

@keyframes marquee {
  to {
    transform: translateX(-50%)
  }
}

/* ── ABOUT ── */
.about-section {
  background: var(--bg)
}

.about-img-wrap {
  position: relative;
  width: 100%;
  max-width: 510px;
  margin: 0 auto
}

.about-img-bg {
  width: 100%;
  padding-top: 100%;
  background: linear-gradient(135deg, rgba(0, 229, 255, .08), rgba(123, 97, 255, .08));
  border: 1px solid var(--border);
  border-radius: 24px
}

.about-img-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent);
  opacity: .7
}

.exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--bg);
  padding: 16px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 229, 255, .3)
}

.exp-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800
}

.exp-badge small {
  font-size: 11px;
  font-family: var(--font-mono)
}

.about-text {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 14px
}

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

.about-tags span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  border: 1px solid rgba(0, 229, 255, .25);
  background: rgba(0, 229, 255, .06);
  padding: 7px 16px;
  border-radius: 50px;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 6px
}

/* ── TECH STACK ── */
.skills-section {
  background: var(--bg2)
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
}

.tech-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
}

.tech-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 20px 40px var(--shadow);
}

.tech-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #00e5ff, #7b61ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.tech-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 25px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tech-tags span {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-vis);
  padding: 8px 18px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.tech-card:hover .tech-tags span {
  border-color: rgba(0, 229, 255, 0.2);
  color: var(--text);
}

/* ── PROJECTS ── */
.projects-section {
  background: var(--bg);
  padding: 60px 0
}

.project-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--border-vis);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .3s
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg)
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px
}

.project-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  position: relative
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 255, .25);
  box-shadow: 0 30px 60px var(--shadow)
}

.project-img {
  height: 200px;
  position: relative;
  overflow: hidden
}

.p-img1 {
  background: linear-gradient(135deg, #0d1b2a, #1a3a5c)
}

.p-img2 {
  background: linear-gradient(135deg, #1a0d2a, #3a1a5c)
}

.p-img3 {
  background: linear-gradient(135deg, #0d2a1a, #1a5c3a)
}

.p-img4 {
  background: linear-gradient(135deg, #2a1a0d, #5c3a1a)
}

.p-img5 {
  background: linear-gradient(135deg, #2a0d1a, #5c1a3a)
}

.p-img6 {
  background: linear-gradient(135deg, #0d1a2a, #1a3a5c)
}

.project-img::after {
  content: '</>';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: 2.5rem;
  color: rgba(255, 255, 255, .1);
  letter-spacing: -4px;
  pointer-events: none
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 229, 255, .1);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transition: opacity .3s
}

.project-card:hover .project-overlay {
  opacity: 1
}

.proj-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(8, 11, 16, .8);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all .3s;
  position: relative;
  z-index: 2
}

.proj-link:hover {
  background: var(--accent);
  color: var(--bg)
}

.project-body {
  padding: 24px;
  position: relative
}

.proj-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px
}

.proj-tags span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  background: rgba(0, 229, 255, .07);
  border: 1px solid rgba(0, 229, 255, .2);
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .04em
}

.project-body h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text)
}

.project-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65
}

.project-case-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: gap .25s, color .25s
}

.project-case-link:hover {
  gap: 12px;
  color: var(--accent)
}

.project-card.hidden {
  opacity: 0;
  transform: scale(.9);
  pointer-events: none;
  display: none
}

/* ── CASE STUDY PAGE ── */
.case-study-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 70px;
  background: var(--bg);
  overflow: hidden
}

.case-study-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(27, 216, 134, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(123, 97, 255, .035) 1px, transparent 1px);
  background-size: 58px 58px;
  pointer-events: none
}

.case-study-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 44px;
  align-items: center
}

.case-study-back {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: color .25s
}

.case-study-back:hover {
  color: var(--accent)
}

.case-study-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--text);
  margin-bottom: 24px
}

.case-study-copy p {
  max-width: 640px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 28px
}

.case-study-tags {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 34px
}

.case-study-tags span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  background: rgba(27, 216, 134, .08);
  border: 1px solid rgba(27, 216, 134, .22);
  padding: 6px 13px;
  border-radius: 999px
}

.case-study-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.case-study-media {
  border: 1px solid var(--border-vis);
  border-radius: 8px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 24px 70px var(--shadow)
}

.case-study-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover
}

.case-study-section {
  background: var(--bg2)
}

.case-study-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px
}

.case-study-summary>div {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 8px;
  padding: 20px
}

.case-study-summary span {
  display: block;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 9px
}

.case-study-summary strong {
  display: block;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 1.2rem
}

.case-study-content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px
}

.case-study-panel {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 8px;
  padding: 26px;
  min-height: 320px
}

.case-study-step {
  display: inline-flex;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  margin-bottom: 24px
}

.case-study-panel h2 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px
}

.case-study-panel p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.85;
  margin: 0
}

/* ══════════════════════════════════════
   AUTHOR / MARKETPLACE SECTION
══════════════════════════════════════ */
.author-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.author-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 229, 255, .05) 0%, transparent 70%);
  pointer-events: none;
}

.author-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* ── Author Card ── */
.author-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1), box-shadow .4s;
}

.author-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 70px var(--shadow);
}

.author-card-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px 24px;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .3s;
}

.author-card:hover .author-card-inner {
  border-color: rgba(0, 229, 255, .2);
}

.author-card-featured .author-card-inner {
  border-color: rgba(0, 229, 255, .25);
  background: linear-gradient(160deg, var(--card), rgba(0, 229, 255, .03));
}

/* Glow behind card */
.author-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  opacity: 0;
  transition: opacity .4s;
  z-index: 0;
}

.author-card:hover .author-card-glow {
  opacity: 1;
}

.tm-glow {
  background: radial-gradient(ellipse at bottom, rgba(0, 229, 255, .18), transparent 70%);
}

.tf-glow {
  background: radial-gradient(ellipse at bottom, rgba(0, 194, 106, .18), transparent 70%);
}

.cs-glow {
  background: radial-gradient(ellipse at bottom, rgba(123, 97, 255, .18), transparent 70%);
}

/* Platform badge pill */
.author-platform-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  width: fit-content;
}

.tm-badge {
  background: rgba(0, 229, 255, .1);
  color: var(--accent);
  border: 1px solid rgba(0, 229, 255, .25);
}

.tf-badge {
  background: rgba(0, 194, 106, .1);
  color: #00c26a;
  border: 1px solid rgba(0, 194, 106, .25);
}

.cs-badge {
  background: rgba(123, 97, 255, .1);
  color: var(--accent2);
  border: 1px solid rgba(123, 97, 255, .25);
}

/* Avatar */
.author-top {
  position: relative;
  display: flex;
  width: fit-content;
}

.author-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.tm-avatar {
  background: linear-gradient(135deg, rgba(0, 229, 255, .2), rgba(0, 229, 255, .05));
  color: var(--accent);
  border: 2px solid rgba(0, 229, 255, .3);
}

.tf-avatar {
  background: linear-gradient(135deg, rgba(0, 194, 106, .2), rgba(0, 194, 106, .05));
  color: #00c26a;
  border: 2px solid rgba(0, 194, 106, .3);
}

.cs-avatar {
  background: linear-gradient(135deg, rgba(123, 97, 255, .2), rgba(123, 97, 255, .05));
  color: var(--accent2);
  border: 2px solid rgba(123, 97, 255, .3);
}

.author-verified {
  position: absolute;
  bottom: 2px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  border: 2px solid var(--card);
  background: var(--accent);
  color: var(--bg);
}

.tf-ver {
  background: #00c26a;
}

.cs-ver {
  background: var(--accent2);
}

/* Elite ribbon */
.elite-ribbon {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #ffd700, #ffb700);
  color: #000;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
  width: fit-content;
  letter-spacing: .04em;
}

/* Author info */
.author-info {
  flex: 1;
}

.author-name {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.author-role {
  font-size: 12.5px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* Stats row */
.author-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 0;
}

.author-stat {
  flex: 1;
  text-align: center;
  padding: 0 8px;
}

.astat-num {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1.2;
}

.author-stat p {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin: 2px 0 0;
}

.astat-sep {
  width: 1px;
  height: 36px;
  background: var(--border-vis);
  flex-shrink: 0;
}

/* Tags */
.author-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.author-tags span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: .03em;
}

/* Profile button */
.author-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 11px 0;
  border-radius: 10px;
  width: 100%;
  border: none;
  cursor: pointer;
  transition: all .3s;
  margin-top: auto;
}

.tm-btn {
  background: rgba(0, 229, 255, .1);
  color: var(--accent);
  border: 1px solid rgba(0, 229, 255, .25);
}

.tm-btn:hover {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 20px rgba(0, 229, 255, .35);
}

.tf-btn {
  background: rgba(0, 194, 106, .1);
  color: #00c26a;
  border: 1px solid rgba(0, 194, 106, .25);
}

.tf-btn:hover {
  background: #00c26a;
  color: #000;
  box-shadow: 0 0 20px rgba(0, 194, 106, .35);
}

.cs-btn {
  background: rgba(123, 97, 255, .1);
  color: var(--accent2);
  border: 1px solid rgba(123, 97, 255, .25);
}

.cs-btn:hover {
  background: var(--accent2);
  color: #fff;
  box-shadow: 0 0 20px rgba(123, 97, 255, .35);
}

/* Combined totals bar */
.author-combined {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border-vis);
  border-radius: 20px;
  padding: 28px 20px;
  flex-wrap: wrap;
}

.combined-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 32px;
  flex: 1;
  min-width: 160px;
  justify-content: center;
}

.combined-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 229, 255, .08);
  border: 1px solid rgba(0, 229, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
}

.combined-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: inline-block;
  line-height: 1;
}

.combined-plus {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-left: 2px;
}

.combined-item p {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 4px 0 0;
}

.combined-divider {
  width: 1px;
  height: 60px;
  background: var(--border-vis);
  flex-shrink: 0;
}

/* ── PRODUCTS ── */
.products-section {
  background: var(--bg2)
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px
}

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  position: relative
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 70px var(--shadow);
  border-color: rgba(0, 229, 255, .2)
}

.featured-product {
  border-color: rgba(0, 229, 255, .3) !important;
  background: linear-gradient(160deg, var(--card), rgba(0, 229, 255, .04))
}

.product-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: .04em;
  z-index: 2
}

.badge-hot {
  background: rgba(255, 77, 109, .15);
  color: var(--accent3);
  border: 1px solid rgba(255, 77, 109, .25)
}

.badge-new {
  background: rgba(0, 229, 255, .1);
  color: var(--accent);
  border: 1px solid rgba(0, 229, 255, .25)
}

.badge-sale {
  background: rgba(0, 230, 118, .1);
  color: #00e676;
  border: 1px solid rgba(0, 230, 118, .25)
}

.product-icon {
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 18px
}

.product-body {
  flex: 1
}

.product-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px
}

.product-tags span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent2);
  background: rgba(123, 97, 255, .08);
  border: 1px solid rgba(123, 97, 255, .2);
  padding: 4px 12px;
  border-radius: 50px
}

.product-body h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text)
}

.product-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light)
}

.product-features li i {
  color: #00e676;
  font-size: 11px;
  flex-shrink: 0
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border)
}

.product-price {
  display: flex;
  flex-direction: column
}

.price-old {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-family: var(--font-mono)
}

.price-now {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all .3s;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(0, 229, 255, .2)
}

.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(0, 229, 255, .4);
  color: var(--bg)
}

.featured-buy {
  background: linear-gradient(135deg, var(--accent), var(--accent2))
}

.featured-buy:hover {
  box-shadow: 0 0 35px rgba(123, 97, 255, .4)
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--bg)
}

.testi-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  min-height: 240px
}

.testi-card {
  position: absolute;
  inset: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  opacity: 0;
  transform: translateX(40px);
  pointer-events: none;
  transition: all .5s cubic-bezier(.4, 0, .2, 1)
}

.testi-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative
}

.stars {
  color: #ffd700;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 3px
}

.testi-card p {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--bg);
  flex-shrink: 0
}

.testi-author strong {
  font-family: var(--font-head);
  font-size: 15px;
  display: block;
  color: var(--text)
}

.testi-author small {
  color: var(--text-muted);
  font-size: 12px
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-vis);
  cursor: pointer;
  transition: all .3s
}

.t-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px
}

/* ── CONTACT ── */
.contact-section {
  background: var(--bg2)
}

.contact-info {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ci-item {
  display: flex;
  align-items: center;
  gap: 14px
}

.ci-item i {
  width: 40px;
  height: 40px;
  background: rgba(0, 229, 255, .07);
  border: 1px solid rgba(0, 229, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0
}

.ci-item span {
  font-size: 14px;
  color: var(--text-muted)
}

.social-links {
  display: flex;
  gap: 12px
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: all .3s
}

.social-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--glow)
}

.contact-form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px
}

.form-row-custom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px
}

.form-group-custom {
  margin-bottom: 20px
}

.form-group-custom:last-child {
  margin-bottom: 0
}

.form-group-custom label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px
}

.form-group-custom input,
.form-group-custom select,
.form-group-custom textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 14px;
  outline: none;
  transition: all .3s;
  resize: vertical
}

.form-group-custom input:focus,
.form-group-custom textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, .08)
}

/* ── FOOTER ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 32px 0
}

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

.footer p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0
}

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

.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: color .3s
}

.footer-links a:hover {
  color: var(--accent)
}

/* ══ RESPONSIVE ══ */
@media (max-width:1200px) {
  .author-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .combined-item {
    padding: 8px 20px;
  }
}

@media (max-width:991px) {
  .orb1 {
    width: 320px;
    height: 320px;
    top: -100px;
    right: -60px
  }

  .orb2 {
    width: 240px;
    height: 240px;
    bottom: -60px;
    left: -60px
  }

  .orb3 {
    width: 180px;
    height: 180px
  }

  .section-pad {
    padding: 72px 0
  }

  .hero-section {
    padding-top: 76px
  }

  .case-study-hero {
    min-height: auto;
    padding: 120px 0 60px
  }

  .case-study-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px
  }

  .case-study-content-grid {
    grid-template-columns: 1fr
  }

  .exp-badge {
    right: 0;
    bottom: -10px
  }

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

  .author-combined {
    gap: 0;
  }

  .combined-divider {
    display: none;
  }

  .combined-item {
    border-bottom: 1px solid var(--border);
    padding: 16px;
  }

  .combined-item:last-child {
    border-bottom: none;
  }

  .author-combined {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .combined-item {
    flex-basis: 50%;
  }
}

@media (max-width:768px) {
  .section-pad {
    padding: 60px 0
  }

  .hero-title {
    font-size: clamp(2.4rem, 11vw, 4rem)
  }

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

  .projects-grid {
    grid-template-columns: 1fr
  }

  .products-grid {
    grid-template-columns: 1fr
  }

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

  .author-card-featured {
    order: -1;
  }

  .case-study-summary {
    grid-template-columns: 1fr
  }

  .hero-stats {
    gap: 16px
  }

  .stat-divider {
    height: 30px
  }

  .form-row-custom {
    grid-template-columns: 1fr;
    gap: 0
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center
  }

  .footer-links {
    justify-content: center;
    gap: 14px
  }

  .product-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }

  .btn-buy {
    width: 100%;
    justify-content: center
  }

  .testi-card {
    padding: 24px 20px
  }

  .testi-slider {
    min-height: 270px
  }

  .contact-form-wrap {
    padding: 28px 20px
  }

  .combined-item {
    flex-basis: 50%;
  }
}

@media (max-width:576px) {
  .section-pad {
    padding: 50px 0
  }

  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem)
  }

  .hero-badge {
    font-size: 11px;
    padding: 6px 14px
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px
  }

  .hero-actions .btn-primary-custom,
  .hero-actions .btn-ghost-custom {
    width: 100%;
    justify-content: center
  }

  .hero-stats {
    gap: 10px
  }

  .case-study-actions {
    flex-direction: column
  }

  .case-study-actions .btn-primary-custom,
  .case-study-actions .btn-ghost-custom {
    width: 100%;
    justify-content: center
  }

  .stat-num {
    font-size: 1.7rem
  }

  .section-title {
    font-size: clamp(1.7rem, 7vw, 2.4rem)
  }

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

  .project-filters {
    gap: 6px
  }

  .filter-btn {
    padding: 6px 14px;
    font-size: 11px
  }

  .about-tags {
    gap: 8px
  }

  .footer-links {
    gap: 10px
  }

  .contact-form-wrap {
    padding: 20px 16px
  }

  .testi-card {
    padding: 18px 16px
  }

  .testi-slider {
    min-height: 300px
  }

  .combined-item {
    flex-basis: 100%;
  }

  .author-stats-row {
    flex-wrap: wrap;
  }
}

#about_image_front {
  width: 510px !important;
  height: 510px;
  border-radius: 20px;

}

.product-footer,
.product-body,
.product-icon {
  padding-left: 15px;
  padding-right: 15px;
}

.product-footer {
  padding-bottom: 15px;
}

.product-img img {
  border-radius: 20px 20px 0 0;
  height: 240px;
  width: 100%;
}

.live-btn-buy {
  display: block;
  align-items: center;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all .3s;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(0, 229, 255, .2);
  width: 100%;
  text-align: center !important;
}

.products-grid {
  margin-bottom: 120px;
}

.logo-text {
  width: 200px;
}

/* ── SWEETALERT2 OVERRIDES ── */
.swal2-popup {
  background: var(--card) !important;
  color: var(--text) !important;
  border: 1px solid var(--border-vis) !important;
  border-radius: var(--radius) !important;
  box-shadow: 0 20px 60px var(--shadow) !important;
}
.swal2-title {
  color: var(--text) !important;
}
.swal2-html-container {
  color: var(--text-muted) !important;
}
.swal2-confirm {
  background: var(--accent) !important;
  color: var(--bg) !important;
  border-radius: 50px !important;
  padding: 12px 32px !important;
  font-family: var(--font-mono) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  box-shadow: 0 0 20px rgba(27, 216, 134, 0.25) !important;
}
.swal2-confirm:hover {
  background: var(--accent) !important;
  box-shadow: 0 0 40px rgba(27, 216, 134, 0.45) !important;
}
.swal2-icon.swal2-error {
  border-color: var(--accent3) !important;
  color: var(--accent3) !important;
}
.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  background-color: var(--accent3) !important;
}
.swal2-icon.swal2-success {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}
.swal2-icon.swal2-success [class^=swal2-success-line] {
  background-color: var(--accent) !important;
}
.swal2-icon.swal2-success .swal2-success-ring {
  border-color: rgba(27, 216, 134, 0.3) !important;
}
.swal2-timer-progress-bar {
  background: var(--accent) !important;
}
/* Hide custom cursor on mobile and tablet */
@media (max-width: 991px) {
  body {
    cursor: auto !important;
  }
  .cursor-dot, .cursor-outline {
    display: none !important;
  }
}
