/* RETRO FUTURISM VARIABLES */
:root {
  --bg-dark: #0a0a0f;
  --bg-darker: #050508;
  --bg-card: #0f0f18;

  --neon-pink: #ff2a6d;
  --neon-cyan: #05d9e8;
  --neon-purple: #9d4edd;
  --neon-orange: #ff6b35;
  --neon-blue: #005678;

  --chrome: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  --sunset: linear-gradient(180deg, #ff2a6d 0%, #ff6b35 50%, #f9c80e 100%);

  --white: #ffffff;
  --white-dim: rgba(255, 255, 255, 0.8);
  --white-muted: rgba(255, 255, 255, 0.5);
  --white-faint: rgba(255, 255, 255, 0.1);

  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;

  --glow-pink: 0 0 20px rgba(255, 42, 109, 0.5), 0 0 40px rgba(255, 42, 109, 0.3);
  --glow-cyan: 0 0 20px rgba(5, 217, 232, 0.5), 0 0 40px rgba(5, 217, 232, 0.3);
  --glow-purple: 0 0 20px rgba(157, 78, 221, 0.5), 0 0 40px rgba(157, 78, 221, 0.3);

  --transition: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* SCANLINES OVERLAY */
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.1) 0px,
    rgba(0, 0, 0, 0.1) 1px,
    transparent 1px,
    transparent 2px
  );
  opacity: 0.3;
}

/* GRID BACKGROUND */
.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 217, 232, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(5, 217, 232, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  perspective: 500px;
}

.grid-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, var(--neon-purple) 0%, transparent 60%);
  opacity: 0.1;
}

/* LOADER */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-darker);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-text {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--neon-cyan);
  margin-bottom: 30px;
  animation: flicker 2s infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
  52% { opacity: 1; }
  54% { opacity: 0.9; }
}

.loader-bar {
  width: 300px;
  height: 4px;
  background: var(--white-faint);
  border: 1px solid var(--neon-cyan);
  position: relative;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  width: 0;
  background: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
  animation: loading 2.5s ease-in-out forwards;
}

@keyframes loading {
  to { width: 100%; }
}

.loader-percent {
  font-family: var(--font-mono);
  font-size: 2rem;
  color: var(--neon-pink);
  margin-top: 20px;
}

/* NAVIGATION */
.nav-retro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10, 10, 15, 0.9) 0%, transparent 100%);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  font-size: 1.5rem;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.text-glow {
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--white-dim);
  position: relative;
  transition: var(--transition);
}

.nav-link::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 0.4s ease;
}

.nav-link:hover::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.nav-link:hover {
  color: transparent;
}

.cta-btn {
  position: relative;
  padding: 12px 30px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.btn-border {
  position: absolute;
  inset: 0;
  border: 1px solid var(--neon-pink);
  clip-path: polygon(
    0 10px, 10px 0, calc(100% - 10px) 0, 100% 10px,
    100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px)
  );
  transition: var(--transition);
}

.cta-btn:hover .btn-border {
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.btn-text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--neon-pink);
  transition: var(--transition);
}

.cta-btn:hover .btn-text {
  color: var(--neon-cyan);
}

/* HERO */
.hero-retro {
  min-height: 100vh;
  padding: 150px 80px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.hero-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.deco-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0.3;
}

.line-1 {
  width: 100%;
  height: 1px;
  top: 30%;
  animation: scan-line 8s linear infinite;
}

.line-2 {
  width: 100%;
  height: 1px;
  top: 70%;
  animation: scan-line 8s linear infinite reverse;
}

@keyframes scan-line {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

.deco-circle {
  position: absolute;
  border: 1px solid var(--neon-pink);
  border-radius: 50%;
  opacity: 0.2;
}

.circle-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
}

.circle-2 {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -50px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.tag-bracket {
  font-family: var(--font-mono);
  color: var(--neon-cyan);
}

.tag-text {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--white-muted);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
}

.title-line {
  display: block;
  overflow: hidden;
}

.word {
  display: inline-block;
  position: relative;
}

.word.outline {
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}

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

.hero-desc {
  font-size: 1.1rem;
  color: var(--white-muted);
  margin-bottom: 40px;
  max-width: 450px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.btn-neon {
  position: relative;
  padding: 15px 35px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
}

.btn-neon.primary {
  background: var(--neon-pink);
  color: var(--white);
  clip-path: polygon(
    0 10px, 10px 0, calc(100% - 10px) 0, 100% 10px,
    100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px)
  );
}

.btn-neon.primary:hover {
  box-shadow: var(--glow-pink);
  transform: translateY(-3px);
}

.btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.3) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-neon:hover .btn-glow {
  transform: translateX(100%);
}

.btn-neon.secondary {
  background: transparent;
  border: 1px solid var(--white-muted);
  color: var(--white);
  clip-path: polygon(
    0 10px, 10px 0, calc(100% - 10px) 0, 100% 10px,
    100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px)
  );
}

.btn-neon.secondary:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

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

.stat-box {
  text-align: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
  display: block;
}

.stat-plus {
  font-size: 1.5rem;
  color: var(--neon-pink);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--white-muted);
}

.stat-divider {
  font-family: var(--font-mono);
  color: var(--white-faint);
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-frame {
  width: 400px;
  height: 450px;
  position: relative;
  border: 1px solid var(--neon-cyan);
  background: var(--bg-card);
}

.frame-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--neon-pink);
}

.frame-corner.tl { top: -5px; left: -5px; border-right: none; border-bottom: none; }
.frame-corner.tr { top: -5px; right: -5px; border-left: none; border-bottom: none; }
.frame-corner.bl { bottom: -5px; left: -5px; border-right: none; border-top: none; }
.frame-corner.br { bottom: -5px; right: -5px; border-left: none; border-top: none; }

.visual-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background:
    linear-gradient(135deg, transparent 40%, rgba(255, 42, 109, 0.1) 100%),
    repeating-linear-gradient(0deg, transparent 0px, transparent 2px, rgba(5, 217, 232, 0.03) 2px, rgba(5, 217, 232, 0.03) 4px);
}

.cyber-head {
  width: 200px;
  height: 250px;
  position: relative;
}

.head-shape {
  width: 150px;
  height: 180px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--bg-darker), var(--bg-card));
  border: 2px solid var(--neon-cyan);
  border-radius: 50% 50% 45% 45%;
  position: relative;
  box-shadow: var(--glow-cyan);
}

.eye {
  position: absolute;
  width: 25px;
  height: 8px;
  background: var(--neon-pink);
  box-shadow: var(--glow-pink);
  top: 70px;
}

.eye.left { left: 30px; }
.eye.right { right: 30px; }

.mouth {
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--neon-cyan);
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: var(--glow-cyan);
}

.circuit-lines {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
}

.circuit-lines span {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, var(--neon-cyan), transparent);
}

.frame-label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--neon-cyan);
  letter-spacing: 0.1em;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--neon-pink);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--neon-pink);
  animation: float 4s ease-in-out infinite;
}

.badge-1 { top: 20%; right: -30px; }
.badge-2 { bottom: 20%; left: -30px; animation-delay: -2s; }

.badge-icon {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

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

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--neon-cyan), transparent);
  position: relative;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--neon-cyan);
  animation: scroll-move 2s ease-in-out infinite;
}

@keyframes scroll-move {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(40px); opacity: 0; }
}

.scroll-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--white-muted);
}

/* MARQUEE */
.marquee-retro {
  padding: 25px 0;
  border-top: 1px solid var(--white-faint);
  border-bottom: 1px solid var(--white-faint);
  overflow: hidden;
  background: var(--bg-darker);
}

.marquee-track {
  overflow: hidden;
}

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

.marquee-content span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--white-muted);
}

.marquee-star {
  color: var(--neon-pink) !important;
  text-shadow: var(--glow-pink);
}

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

/* SECTIONS */
section {
  padding: 120px 80px;
  position: relative;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-header.left {
  text-align: left;
}

.header-line {
  width: 60px;
  height: 2px;
  background: var(--neon-cyan);
  margin-bottom: 20px;
  box-shadow: var(--glow-cyan);
}

.section-number {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--neon-pink);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

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

.section-desc {
  font-size: 1rem;
  color: var(--white-muted);
  max-width: 500px;
}

.section-header.center .section-desc {
  margin: 0 auto;
}

/* WORK GRID */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.work-card {
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.work-card.featured {
  grid-row: span 2;
}

.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.work-card.featured .card-image {
  aspect-ratio: 3/4;
}

.image-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-darker), var(--bg-card));
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--accent);
  transition: var(--transition);
}

.project-code {
  font-family: var(--font-mono);
  font-size: 3rem;
  color: var(--accent);
  opacity: 0.2;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.work-card:hover .card-overlay {
  opacity: 1;
}

.overlay-icon {
  width: 60px;
  height: 60px;
  border: 2px solid var(--neon-cyan);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: var(--neon-cyan);
  clip-path: polygon(
    0 10px, 10px 0, calc(100% - 10px) 0, 100% 10px,
    100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px)
  );
}

.card-info {
  padding: 20px 0;
}

.card-category {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--neon-pink);
  letter-spacing: 0.15em;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 8px 0 5px;
}

.card-year {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--white-muted);
}

.card-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  transition: width 0.5s ease;
}

.work-card:hover .card-border {
  width: 100%;
  box-shadow: var(--glow-cyan);
}

.work-cta {
  text-align: center;
}

/* ABOUT */
.about-retro {
  background: var(--bg-darker);
}

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

.visual-box {
  width: 350px;
  height: 350px;
  position: relative;
  border: 1px solid var(--neon-cyan);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.box-scan {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
  animation: box-scan 3s linear infinite;
}

@keyframes box-scan {
  from { top: 0; }
  to { top: 100%; }
}

.box-content {
  text-align: center;
}

.box-year {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--neon-pink);
  display: block;
  margin-bottom: 5px;
}

.box-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  background: var(--sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.box-corners span {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid var(--neon-pink);
}

.box-corners span:nth-child(1) { top: -5px; left: -5px; border-right: none; border-bottom: none; }
.box-corners span:nth-child(2) { top: -5px; right: -5px; border-left: none; border-bottom: none; }
.box-corners span:nth-child(3) { bottom: -5px; left: -5px; border-right: none; border-top: none; }
.box-corners span:nth-child(4) { bottom: -5px; right: -5px; border-left: none; border-top: none; }

.about-text p {
  margin-bottom: 20px;
  color: var(--white-dim);
}

.text-large {
  font-size: 1.3rem;
  line-height: 1.7;
}

.highlight {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

.about-values {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--white-faint);
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.value-icon {
  color: var(--neon-pink);
}

.value-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  padding: 35px;
  background: var(--bg-card);
  border: 1px solid var(--white-faint);
  position: relative;
  transition: var(--transition);
  clip-path: polygon(
    0 15px, 15px 0, calc(100% - 15px) 0, 100% 15px,
    100% calc(100% - 15px), calc(100% - 15px) 100%, 15px 100%, 0 calc(100% - 15px)
  );
}

.service-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-5px);
}

.service-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--neon-pink);
  opacity: 0.15;
  position: absolute;
  top: 15px;
  right: 20px;
}

.service-icon {
  width: 50px;
  height: 50px;
  color: var(--neon-cyan);
  margin-bottom: 25px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--white-muted);
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tags span {
  padding: 5px 12px;
  background: var(--white-faint);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--white-muted);
}

.service-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-cyan);
  transition: width 0.5s ease;
}

.service-card:hover .service-line {
  width: 100%;
}

/* CTA */
.cta-retro {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

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

.cta-visual {
  position: relative;
  width: 350px;
  height: 350px;
  margin: 0 auto;
}

.visual-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid var(--neon-cyan);
  border-radius: 50%;
  animation: ring-pulse 3s ease-in-out infinite;
}

.ring-1 { width: 150px; height: 150px; }
.ring-2 { width: 250px; height: 250px; animation-delay: -1s; }
.ring-3 { width: 350px; height: 350px; animation-delay: -2s; }

@keyframes ring-pulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.05); }
}

.visual-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: var(--neon-pink);
  text-shadow: var(--glow-pink);
  animation: pulse-glow 2s ease-in-out infinite;
}

.cta-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--neon-cyan);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 20px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1.1rem;
  color: var(--white-muted);
  margin-bottom: 40px;
}

.cta-form {
  margin-bottom: 30px;
}

.input-group {
  display: flex;
  gap: 15px;
}

.neon-input {
  flex: 1;
  padding: 15px 20px;
  background: var(--bg-card);
  border: 1px solid var(--white-faint);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: var(--transition);
  clip-path: polygon(
    0 8px, 8px 0, calc(100% - 8px) 0, 100% 8px,
    100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px)
  );
}

.neon-input::placeholder {
  color: var(--white-muted);
}

.neon-input:focus {
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--neon-pink);
  transition: var(--transition);
}

.contact-link:hover {
  text-shadow: var(--glow-pink);
}

.link-icon {
  animation: blink 1s infinite;
}

/* FOOTER */
.footer-retro {
  padding: 80px;
  border-top: 1px solid var(--white-faint);
  position: relative;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo .logo-icon {
  font-size: 1.3rem;
}

.footer-logo span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--white-muted);
  margin-bottom: 25px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--white-faint);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  transition: var(--transition);
  clip-path: polygon(
    0 5px, 5px 0, calc(100% - 5px) 0, 100% 5px,
    100% calc(100% - 5px), calc(100% - 5px) 100%, 5px 100%, 0 calc(100% - 5px)
  );
}

.social-link:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.link-column h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--neon-pink);
  margin-bottom: 20px;
}

.link-column a {
  display: block;
  font-size: 0.9rem;
  color: var(--white-muted);
  margin-bottom: 12px;
  transition: var(--transition);
}

.link-column a:hover {
  color: var(--neon-cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--white-faint);
}

.copyright {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--white-muted);
}

.footer-coordinates {
  display: flex;
  gap: 30px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--white-faint);
}

.footer-decoration {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.deco-text {
  font-family: var(--font-display);
  font-size: 15vw;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px var(--white-faint);
  opacity: 0.1;
  white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-retro {
    grid-template-columns: 1fr;
    padding: 120px 40px 80px;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 40px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

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

  .work-card.featured {
    grid-row: auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .cta-container {
    grid-template-columns: 1fr;
  }

  .cta-visual {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-retro {
    padding: 20px;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 80px 20px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }

  .about-values {
    flex-direction: column;
    gap: 20px;
  }

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

  .input-group {
    flex-direction: column;
  }

  .footer-retro {
    padding: 40px 20px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-coordinates {
    flex-direction: column;
    gap: 5px;
  }
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: var(--neon-pink);
  box-shadow: var(--glow-pink);
}

/* SELECTION */
::selection {
  background: var(--neon-pink);
  color: var(--white);
}
