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

:root {
  --bg:          #05050c;
  --bg2:         #0b0b18;
  --bg3:         #0f0f22;
  --card:        #0d0d1f;
  --p1:          #4c1d95;
  --p2:          #7c3aed;
  --p3:          #a855f7;
  --p4:          #c084fc;
  --cyan:        #00d4ff;
  --magenta:     #ff00ff;
  --green:       #39ff14;
  --yellow:      #ffe000;
  --txt:         #e2e8f0;
  --txt2:        #94a3b8;
  --border:      rgba(168,85,247,.25);
  --glow-p:      rgba(168,85,247,.6);
  --glow-c:      rgba(0,212,255,.6);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--txt);
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

::selection { background: var(--p2); color: #fff; }

/* ─── CANVAS BACKGROUND ───────────────────────────────── */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ─── SCANLINES ───────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,.07) 2px,
    rgba(0,0,0,.07) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* ─── NAVBAR ──────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5,5,12,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: .12em;
  background: linear-gradient(90deg, var(--p3), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(168,85,247,.5));
  transition: filter .3s;
}

.nav-logo:hover {
  filter: drop-shadow(0 0 18px rgba(168,85,247,.8));
}

.nav-logo span { -webkit-text-fill-color: transparent; }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: .8rem;
  color: var(--txt2);
  text-decoration: none;
  letter-spacing: .12em;
  transition: color .3s, text-shadow .3s;
  position: relative;
}

.nav-links a::before {
  content: '> ';
  color: var(--p3);
  opacity: 0;
  transition: opacity .3s;
}

.nav-links a:hover { color: var(--p4); text-shadow: 0 0 10px var(--glow-p); }
.nav-links a:hover::before { opacity: 1; }

/* ─── SECTIONS WRAPPER ────────────────────────────────── */
main { position: relative; z-index: 1; }

section {
  padding: 7rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

#hero { min-height: 100vh; }

/* ─── HERO ────────────────────────────────────────────── */
#hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.2rem;
  padding-top: 4rem;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .8rem;
  color: var(--cyan);
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .8;
}

.about-typewriter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.hero-tw-cursor {
  display: inline-block;
  width: 3px;
  height: .85em;
  background: var(--p3);
  margin-left: 4px;
  box-shadow: 0 0 10px var(--glow-p);
  animation: blink .9s step-end infinite;
  vertical-align: middle;
  flex-shrink: 0;
  border-radius: 1px;
}

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-label,
.hero-title,
.hero-sub,
.hero-cta-row {
  opacity: 0;
  animation: hero-fade-up .7s ease-out forwards;
}

.hero-label    { animation-delay: .1s; }
.hero-title    { animation-delay: .35s; }
.hero-sub      { animation-delay: .65s; }
.hero-cta-row  { animation-delay: .9s; }

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.glitch {
  position: relative;
  color: var(--txt);
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  opacity: .8;
}

.glitch::before {
  color: var(--cyan);
  animation: glitch-top 3.5s infinite;
  clip-path: polygon(0 0,100% 0,100% 40%,0 40%);
  transform: translateX(-3px);
}

.glitch::after {
  color: var(--magenta);
  animation: glitch-bot 3.5s infinite;
  clip-path: polygon(0 60%,100% 60%,100% 100%,0 100%);
  transform: translateX(3px);
}

@keyframes glitch-top {
  0%,90%,100% { transform: translateX(0);   opacity: 0; }
  91%         { transform: translateX(-4px); opacity: .8; }
  93%         { transform: translateX(3px);  opacity: .6; }
  95%         { transform: translateX(-2px); opacity: .8; }
  97%         { transform: translateX(0);    opacity: 0; }
}
@keyframes glitch-bot {
  0%,90%,100% { transform: translateX(0);   opacity: 0; }
  92% { transform: translateX(4px);  opacity: .8; }
  94% { transform: translateX(-3px); opacity: .6; }
  96% { transform: translateX(2px);  opacity: .8; }
  98% { transform: translateX(0);    opacity: 0; }
}

.hero-title .accent { color: var(--p3); text-shadow: 0 0 28px var(--glow-p); }

.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: var(--txt2);
  max-width: 540px;
  line-height: 1.7;
}

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

.btn {
  font-family: 'JetBrains Mono', monospace;
  font-size: .85rem;
  letter-spacing: .1em;
  padding: .75rem 1.8rem;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.08) 0%, transparent 60%);
  pointer-events: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--p2), var(--p3));
  color: #fff;
  border: none;
  box-shadow: 0 0 24px var(--glow-p);
}

.btn-primary:hover {
  box-shadow: 0 0 40px var(--glow-p), 0 0 80px rgba(168,85,247,.3);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
  box-shadow: 0 0 12px rgba(0,212,255,.2);
}

.btn-outline:hover {
  background: rgba(0,212,255,.08);
  box-shadow: 0 0 28px var(--glow-c);
  transform: translateY(-2px);
}

/* ─── TERMINAL WINDOW ─────────────────────────────────── */
.terminal {
  background: #0c0c1e;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(168,85,247,.1),
    0 20px 60px rgba(0,0,0,.6),
    0 0 80px rgba(168,85,247,.1);
  width: 100%;
  max-width: 640px;
}

.terminal-bar {
  background: #1a1a2e;
  padding: .65rem 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  border-bottom: 1px solid var(--border);
}

.t-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.t-dot.red    { background: #ff5f56; box-shadow: 0 0 6px #ff5f56aa; }
.t-dot.yellow { background: #ffbd2e; box-shadow: 0 0 6px #ffbd2eaa; }
.t-dot.green  { background: #27c93f; box-shadow: 0 0 6px #27c93faa; }

.t-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  color: var(--txt2);
  margin-left: auto;
  margin-right: auto;
  letter-spacing: .06em;
}

.terminal-body {
  padding: 1.25rem 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .82rem;
  line-height: 1.8;
  min-height: 240px;
}

.t-line { display: flex; flex-wrap: wrap; gap: .25rem; }
.t-prompt { color: var(--p4); user-select: none; }
.t-path   { color: var(--cyan); }
.t-cmd    { color: var(--txt); }
.t-out    { color: var(--txt2); padding-left: 1.2rem; }
.t-out.success { color: var(--green); }
.t-out.warn    { color: var(--yellow); }
.t-out.info    { color: var(--p4); }
.t-out.hi      { color: var(--cyan); }

.cursor {
  display: inline-block;
  width: 8px; height: 1em;
  background: var(--p3);
  vertical-align: text-bottom;
  animation: blink .9s step-end infinite;
}

@keyframes blink { 50% { opacity: 0; } }

/* ─── CODE OUTPUT ────────────────────────────────────── */
.code-output {
  white-space: pre;
  font-family: 'JetBrains Mono', monospace;
  font-size: .78rem;
  line-height: 1.75;
  overflow-x: auto;
  min-height: 220px;
  tab-size: 2;
}

.code-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--p3);
  vertical-align: text-bottom;
  margin-left: 1px;
  animation: blink .9s step-end infinite;
  box-shadow: 0 0 6px var(--glow-p);
}

/* ─── ABOUT ───────────────────────────────────────────── */
#about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .5rem;
}

.sticker-mobile-only { display: none; }

.about-item,
.about-after-tw {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}

.about-item.visible,
.about-after-tw.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .sticker-mobile-only { display: block; width: 90px; }
  .sticker-about:not(.sticker-mobile-only) { display: none; }
}

.section-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: .75rem;
  color: var(--cyan);
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  opacity: .8;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--txt) 40%, var(--p4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  color: var(--txt2);
  margin-bottom: 1rem;
  font-size: .97rem;
}

.about-text p strong { color: var(--p4); }

.badge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 1.5rem;
}

.badge {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .8rem 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .78rem;
  color: var(--txt2);
  display: flex;
  align-items: center;
  gap: .6rem;
  transition: border-color .3s, box-shadow .3s;
}

.badge:hover {
  border-color: var(--p3);
  box-shadow: 0 0 16px rgba(168,85,247,.2);
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--p3);
  box-shadow: 0 0 8px var(--glow-p);
  flex-shrink: 0;
}

/* ─── SERVICES ────────────────────────────────────────── */
#services { min-height: auto; padding-bottom: 6rem; }

.services-header { text-align: center; margin-bottom: 3.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--p2), var(--p3), var(--cyan));
  opacity: 0;
  transition: opacity .3s;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(168,85,247,.5);
  box-shadow: 0 12px 40px rgba(0,0,0,.4), 0 0 40px rgba(168,85,247,.15);
}

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

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
  filter: drop-shadow(0 0 8px var(--glow-p));
  transform-origin: center bottom;
  will-change: transform, filter;
}

@keyframes icon-zap {
  0%, 22%, 100% { transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 8px var(--glow-p)); }
  5%  { transform: scale(1.22) rotate(-8deg); filter: drop-shadow(0 0 14px #ffe000) brightness(1.5); }
  10% { transform: scale(0.94) rotate(4deg);  filter: drop-shadow(0 0 4px #ffe000); }
  15% { transform: scale(1.1)  rotate(-3deg); filter: drop-shadow(0 0 10px #ffe000) brightness(1.3); }
  19% { transform: scale(1) rotate(0deg); }
}

@keyframes icon-sway {
  0%, 32%, 100% { transform: rotate(0deg) scale(1); }
  7%  { transform: rotate(-10deg) scale(1.06); }
  15% { transform: rotate(7deg)   scale(1.03); }
  22% { transform: rotate(-4deg)  scale(1.01); }
  28% { transform: rotate(1deg)   scale(1); }
}

@keyframes icon-pulse {
  0%, 28%, 100% { transform: scale(1); filter: drop-shadow(0 0 8px var(--glow-p)); }
  7%  { transform: scale(1.16); filter: drop-shadow(0 0 16px var(--glow-p)) brightness(1.4); }
  13% { transform: scale(0.95); filter: drop-shadow(0 0 4px var(--glow-p)); }
  19% { transform: scale(1.07); filter: drop-shadow(0 0 10px var(--glow-p)) brightness(1.2); }
  25% { transform: scale(1); }
}

@keyframes icon-bounce {
  0%, 28%, 100% { transform: translateY(0) scaleX(1) scaleY(1); }
  7%  { transform: translateY(-7px) scaleX(0.96) scaleY(1.04); }
  13% { transform: translateY(2px)  scaleX(1.04) scaleY(0.95); }
  18% { transform: translateY(-3px) scaleX(0.99) scaleY(1.01); }
  23% { transform: translateY(0)    scaleX(1)    scaleY(1); }
}

.services-grid .service-card:nth-child(1) .service-icon { animation: icon-zap    3.6s ease-in-out infinite 0s; }
.services-grid .service-card:nth-child(2) .service-icon { animation: icon-sway   4s   ease-in-out infinite 1s; }
.services-grid .service-card:nth-child(3) .service-icon { animation: icon-pulse  3.8s ease-in-out infinite 1.8s; }
.services-grid .service-card:nth-child(4) .service-icon { animation: icon-pulse  3.4s ease-in-out infinite 0.5s; }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .6rem;
  color: var(--txt);
}

.service-card p {
  font-size: .87rem;
  color: var(--txt2);
  line-height: 1.65;
}

.service-tag {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .7rem;
  padding: .3rem .75rem;
  border-radius: 3px;
  background: rgba(168,85,247,.12);
  border: 1px solid rgba(168,85,247,.3);
  color: var(--p4);
}

/* ─── PROCESS ─────────────────────────────────────────── */
#process { min-height: auto; padding-bottom: 6rem; }
.process-header { text-align: center; margin-bottom: 4rem; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--p2), var(--p3), var(--cyan), var(--p3));
  opacity: .45;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 .75rem;
}

.process-line {
  position: absolute;
  top: 28px;
  left: 10%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--p2), var(--p3), var(--cyan));
  box-shadow: 0 0 8px rgba(168,85,247,.7), 0 0 20px rgba(0,212,255,.3);
  transition: width 2s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}

.step-circle {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(168,85,247,.2);
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(168,85,247,.25);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: none;
  transition: border-color .4s, color .4s, box-shadow .4s;
}

.process-step.active .step-circle {
  border-color: var(--p3);
  color: var(--p3);
  box-shadow: 0 0 24px rgba(168,85,247,.5);
}

.process-step.active:hover .step-circle {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 32px rgba(0,212,255,.5);
}

.step-title {
  font-size: .92rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: .5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s, transform .4s;
}

.step-desc {
  font-size: .78rem;
  color: var(--txt2);
  line-height: 1.65;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s .1s, transform .4s .1s;
}

.process-step.active .step-title,
.process-step.active .step-desc {
  opacity: 1;
  transform: translateY(0);
}

/* ─── OFFER BANNER ────────────────────────────────────── */
.offer-banner {
  background: linear-gradient(135deg, rgba(124,58,237,.12), rgba(0,212,255,.06));
  border: 1px solid rgba(168,85,247,.3);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  margin: 4rem auto 0;
  max-width: 700px;
  position: relative;
  overflow: hidden;
}

.offer-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(168,85,247,.06) 25%,
    transparent 50%,
    rgba(0,212,255,.04) 75%,
    transparent 100%
  );
  animation: rotate 12s linear infinite;
}

@keyframes rotate { to { transform: rotate(360deg); } }

.offer-banner h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: var(--txt);
  position: relative;
}

.offer-banner h3 span { color: var(--p3); }

.offer-banner p {
  color: var(--txt2);
  font-size: .95rem;
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

/* ─── CONTACT ─────────────────────────────────────────── */
#contact {
  min-height: auto;
  padding-bottom: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-header { text-align: center; margin-bottom: 3rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  width: 100%;
  max-width: 860px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: .4rem; }

.form-group label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  color: var(--p4);
  letter-spacing: .1em;
}

.form-group input,
.form-group textarea {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: .75rem 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .82rem;
  color: var(--txt);
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(148,163,184,.4); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--p3);
  box-shadow: 0 0 16px rgba(168,85,247,.2);
}

.form-group textarea { min-height: 120px; }

.consent-label {
  display: flex;
  align-items: center;
  gap: .65rem;
  cursor: pointer;
  user-select: none;
}

.consent-checkbox { display: none; }

.consent-box {
  width: 18px;
  height: 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--card);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .25s, background .25s, box-shadow .25s;
}

.consent-box::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0;
  transition: opacity .2s;
}

.consent-checkbox:checked + .consent-box {
  background: var(--p2);
  border-color: var(--p3);
  box-shadow: 0 0 10px rgba(168,85,247,.4);
}

.consent-checkbox:checked + .consent-box::after { opacity: 1; }

.consent-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  color: var(--txt2);
  line-height: 1.5;
}

.consent-text a {
  color: var(--p4);
  text-decoration: underline;
  text-decoration-color: rgba(192,132,252,.4);
  transition: color .2s;
}

.consent-text a:hover { color: var(--cyan); }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.1rem 1.25rem;
  transition: border-color .3s, box-shadow .3s;
}

.contact-item:hover {
  border-color: var(--p3);
  box-shadow: 0 0 20px rgba(168,85,247,.15);
}

.contact-item-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .68rem;
  color: var(--p4);
  letter-spacing: .12em;
  margin-bottom: .2rem;
  text-transform: uppercase;
}

.contact-item-val {
  font-size: .9rem;
  color: var(--txt);
}

.contact-item-val a {
  color: var(--cyan);
  text-decoration: none;
  transition: text-shadow .3s;
}

.contact-item-val a:hover {
  text-shadow: 0 0 10px var(--glow-c);
}

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  color: var(--txt2);
  background: rgba(5,5,12,.9);
}

footer span { color: var(--p3); }

/* ─── STICKERS ───────────────────────────────────────── */
@keyframes sticker-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-12px) rotate(2deg); }
}

@keyframes sticker-appear {
  0%   { opacity: 0; transform: scale(0.4) rotate(-8deg); }
  70%  { opacity: 1; transform: scale(1.08) rotate(3deg); }
  100% { opacity: 1; transform: scale(1) rotate(-2deg); }
}

.sticker {
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.45));
  animation: sticker-float 4s ease-in-out infinite;
}

.sticker-scroll {
  opacity: 0;
  animation: none;
}

.sticker-scroll.visible {
  animation: sticker-appear .7s cubic-bezier(.34,1.56,.64,1) both,
             sticker-float 4s ease-in-out .8s infinite;
}

.sticker-hero {
  width: clamp(100px, 12vw, 150px);
  animation: sticker-appear .7s cubic-bezier(.34,1.56,.64,1) both,
             sticker-float 4s ease-in-out 1s infinite;
}

@media (max-width: 600px) {
  .hero-cta-row { gap: 1.5rem; }
  .sticker-hero { width: 120px; }
}

.sticker-about {
  width: 160px;
  animation-delay: .8s;
}

.sticker-contact {
  width: 130px;
  margin: 0 auto 1rem;
  display: block;
  animation-delay: .5s;
}

@media (max-width: 480px) {
  .sticker-about { width: 110px; }
  .sticker-contact { width: 100px; }
}

/* ─── MOBILE MENU ────────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--p3);
  border-radius: 2px;
  transition: transform .35s, opacity .35s;
  box-shadow: 0 0 6px var(--glow-p);
}

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

.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}

.mobile-backdrop.open { opacity: 1; pointer-events: all; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 72%;
  max-width: 280px;
  background: rgba(11,11,24,.98);
  border-left: 1px solid var(--border);
  backdrop-filter: blur(16px);
  z-index: 1050;
  flex-direction: column;
  padding: 4.5rem 1.75rem 2rem;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .68rem;
  color: var(--p3);
  letter-spacing: .2em;
  margin-bottom: 1.5rem;
  opacity: .7;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.mobile-link {
  font-family: 'JetBrains Mono', monospace;
  font-size: .95rem;
  color: var(--txt2);
  text-decoration: none;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(168,85,247,.1);
  display: block;
  transition: color .3s, padding-left .3s;
  position: relative;
}

.mobile-link::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--p3);
  opacity: 0;
  transition: opacity .3s;
}

.mobile-link:hover { color: var(--p4); padding-left: 1rem; }
.mobile-link:hover::before { opacity: 1; }

.mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 34px; height: 34px;
  color: var(--txt2);
  font-size: .95rem;
  cursor: pointer;
  transition: border-color .3s, color .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-close:hover { border-color: var(--p3); color: var(--p4); }

/* ─── SCROLL REVEAL ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* ─── NEON DIVIDER ────────────────────────────────────── */
.neon-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--p3), var(--cyan), transparent);
  margin: 0 auto;
  max-width: 600px;
  opacity: .4;
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: .9rem 1.25rem; }
  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: .72rem; }

  #about { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  #hero { gap: 2rem; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem 1rem; }
  .process-steps::before { display: none; }
}

@media (max-width: 480px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu { display: flex; }
  .mobile-backdrop { display: block; }
  .hero-cta { flex-direction: column; }
  .btn { text-align: center; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before {
    display: block;
    top: 29px; bottom: 29px;
    left: calc(50% - 1px);
    right: auto;
    width: 2px; height: auto;
    background: linear-gradient(180deg, var(--p2), var(--p3), var(--cyan), var(--p3));
  }
  .process-line {
    top: 29px;
    left: calc(50% - 1px);
    width: 2px;
    height: 0;
    transition: height 2s cubic-bezier(.4,0,.2,1);
  }
  .process-step { align-items: center; }
  .process-step .step-title,
  .process-step .step-desc {
    background: var(--bg);
    padding: 0 .5rem;
    position: relative;
    z-index: 2;
  }
}
