/* ============================================================
   BEAST PRODUCTIONS — styles.css
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --cyan:    #00d4ff;
  --blue:    #0088cc;
  --pink:    #ff2d6b;
  --bg:      #0d0d14;
  --bg2:     #111118;
  --bg3:     #16161f;
  --card:    rgba(255,255,255,0.03);
  --border:  rgba(0,212,255,0.15);
  --border2: rgba(255,45,107,0.15);
  --text:    #e8eaf0;
  --muted:   #6a7080;
  --glow-cyan: 0 0 20px rgba(0,212,255,0.5), 0 0 60px rgba(0,212,255,0.15);
  --glow-pink: 0 0 20px rgba(255,45,107,0.5), 0 0 60px rgba(255,45,107,0.15);
  --glow-blue: 0 0 20px rgba(0,136,204,0.5), 0 0 60px rgba(0,136,204,0.15);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Exo 2', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 2px; }

.cursor {
  position: fixed; width: 12px; height: 12px;
  background: var(--cyan); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(0,212,255,0.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}

body::before { content: ''; display: block; height: 100vh; }

/* ── NAV ─────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  padding: 20px 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(13,13,20,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
nav.scrolled { padding: 14px 5%; }

.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-mark { width: 40px; height: 40px; }
.logo-mark img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 6px var(--cyan)); }
.logo-text {
  font-size: 1.2rem; font-weight: 900; letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.logo-text .dot { -webkit-text-fill-color: var(--pink); }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--cyan); transition: width 0.3s;
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px; border: 1px solid var(--cyan);
  background: transparent; color: var(--cyan);
  font-family: 'Exo 2', sans-serif; font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: none; text-decoration: none; transition: all 0.3s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.nav-cta:hover { background: var(--cyan); color: var(--bg); box-shadow: var(--glow-cyan); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: none; background: none; border: none; }
.nav-toggle span { width: 24px; height: 2px; background: var(--cyan); transition: 0.3s; }

/* ── SPLASH ──────────────────────────────────────────────────── */
#splash {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100vh;
  z-index: 1; transform-origin: center center;
}
#splash-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

.splash-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; pointer-events: none;
}
.splash-logo-wrap {
  position: relative; margin-bottom: 28px;
  animation: splashFadeIn 1.2s 0.3s ease both;
}
.splash-logo-wrap img {
  width: clamp(130px, 17vw, 210px); height: auto;
  filter:
    drop-shadow(0 0 20px rgba(0,212,255,0.8))
    drop-shadow(0 0 60px rgba(0,136,204,0.5))
    drop-shadow(0 0 120px rgba(0,212,255,0.2));
  animation: splashPulse 3s ease-in-out infinite;
}
.splash-logo-wrap::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: clamp(220px, 30vw, 380px); height: clamp(220px, 30vw, 380px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, rgba(0,136,204,0.06) 40%, transparent 70%);
  animation: ringPulse 3s ease-in-out infinite;
}
@keyframes splashPulse {
  0%,100% {
    filter: drop-shadow(0 0 20px rgba(0,212,255,0.8))
            drop-shadow(0 0 60px rgba(0,136,204,0.5))
            drop-shadow(0 0 120px rgba(0,212,255,0.2));
  }
  50% {
    filter: drop-shadow(0 0 34px rgba(0,212,255,1))
            drop-shadow(0 0 90px rgba(0,136,204,0.8))
            drop-shadow(0 0 180px rgba(0,212,255,0.35));
  }
}
@keyframes ringPulse {
  0%,100% { opacity:0.5; transform:translate(-50%,-50%) scale(1); }
  50%     { opacity:1;   transform:translate(-50%,-50%) scale(1.08); }
}
.splash-brand-name {
  font-size: clamp(2rem, 5.5vw, 5rem);
  font-weight: 900; letter-spacing: 0.1em;
  text-transform: uppercase; line-height: 1;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.9) 25%, var(--cyan) 60%, var(--blue) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 28px rgba(0,212,255,0.4));
  margin-bottom: 10px;
  animation: splashFadeIn 1.2s 0.6s ease both;
}
.splash-brand-name .dot { -webkit-text-fill-color: var(--pink); }
.splash-tagline {
  font-family: 'Space Mono', monospace;
  font-size: clamp(0.6rem, 1.1vw, 0.8rem);
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  animation: splashFadeIn 1.2s 0.9s ease both;
}
.splash-scroll-cue {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: splashFadeIn 1.2s 1.3s ease both; pointer-events: auto;
}
.splash-scroll-cue span {
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(0,212,255,0.45);
}
.scroll-arrow {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(0,212,255,0.8), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { opacity:0; transform:scaleY(0); transform-origin:top; }
  50%  { opacity:1; transform:scaleY(1); transform-origin:top; }
  100% { opacity:0; transform:scaleY(1); transform-origin:bottom; }
}
@keyframes splashFadeIn {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── PAGE BODY ───────────────────────────────────────────────── */
#page-body {
  position: relative; z-index: 10;
  background: var(--bg);
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -40px 120px rgba(0,0,0,0.9);
}

/* ── HERO ────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 5% 80px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,136,204,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 25% 60%, rgba(0,212,255,0.07) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 50% 0%,  rgba(255,45,107,0.04) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-lines { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-lines::before, .hero-lines::after {
  content: ''; position: absolute; width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), transparent);
  opacity: 0.3; animation: scanLine 6s linear infinite;
}
.hero-lines::before { top: 35%; }
.hero-lines::after  { top: 65%; animation-delay: 3s; }
@keyframes scanLine { 0% { transform:translateX(-100%); } 100% { transform:translateX(200%); } }

.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 10px; border: 1px solid var(--border);
  background: rgba(0,212,255,0.05);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 28px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  animation: fadeUp 0.8s ease both;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 6px var(--cyan);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

h1 {
  font-size: clamp(3rem, 7vw, 6rem); font-weight: 900; line-height: 1.0;
  letter-spacing: -0.02em; margin-bottom: 24px;
  animation: fadeUp 0.8s 0.1s ease both;
}
h1 .line1, h1 .line3 { display: block; color: var(--text); }
h1 .line2 {
  display: block;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 60%, #00aaff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0,212,255,0.4));
}
.hero-sub {
  font-size: 1.05rem; line-height: 1.7; color: var(--muted);
  max-width: 520px; margin-bottom: 40px; animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.8s 0.3s ease both; }
@keyframes fadeUp   { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeLeft { from { opacity:0; transform:translateX(30px); } to { opacity:1; transform:translateX(0); } }

.hero-stats {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 24px;
  z-index: 1; animation: fadeLeft 0.8s 0.4s ease both;
}
.stat-card {
  padding: 20px 28px; background: var(--card); border: 1px solid var(--border);
  position: relative; overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.stat-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,212,255,0.04), transparent); }
.stat-num {
  font-size: 2.2rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

.hero-logo-float {
  position: absolute; right: 5%; bottom: 10%; z-index: 1;
  width: 200px; height: 200px; opacity: 0.06;
  animation: float 6s ease-in-out infinite;
}
.hero-logo-float img { width: 100%; height: 100%; object-fit: contain; }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-20px); } }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: var(--bg); font-family: 'Exo 2', sans-serif; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  border: none; text-decoration: none; cursor: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { box-shadow: var(--glow-cyan); transform: translateY(-2px); }
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  padding: 14px 32px; background: transparent;
  border: 1px solid var(--border); color: var(--text);
  font-family: 'Exo 2', sans-serif; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; cursor: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: var(--glow-cyan); }

/* ── MARQUEE ─────────────────────────────────────────────────── */
.marquee-section {
  padding: 28px 0; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(0,212,255,0.02);
}
.marquee-track { display: flex; gap: 60px; width: max-content; animation: marquee 22s linear infinite; }
.marquee-item {
  display: flex; align-items: center; gap: 16px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
}
.marquee-item .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 6px var(--cyan); }
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ── SECTION BASE ────────────────────────────────────────────── */
section { padding: 100px 5%; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 16px;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--cyan); }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; }
.section-desc { font-size: 1rem; line-height: 1.7; color: var(--muted); max-width: 560px; }

/* ── SERVICES ────────────────────────────────────────────────── */
#services { background: var(--bg2); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; gap: 40px; flex-wrap: wrap; }
.services-grid { display: flex; flex-direction: column; }
.service-card {
  display: grid; grid-template-columns: 72px 1fr auto;
  align-items: center; padding: 0;
  background: transparent; border: none; border-top: 1px solid var(--border);
  position: relative; overflow: hidden; transition: all 0.4s; cursor: none;
}
.service-card:last-child { border-bottom: 1px solid var(--border); }
.service-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--cyan), var(--blue));
  transform: scaleY(0); transform-origin: top; transition: transform 0.4s ease;
}
.service-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,212,255,0.04), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover::after  { opacity: 1; }
.service-num {
  font-family: 'Space Mono', monospace; font-size: 0.65rem;
  color: rgba(0,212,255,0.25); letter-spacing: 0.1em;
  padding: 40px 0 40px 28px; align-self: flex-start;
  position: relative; z-index: 1; transition: color 0.3s;
}
.service-card:hover .service-num { color: var(--cyan); }
.service-body {
  padding: 36px 32px 36px 24px; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; align-items: center;
}
.service-body-left { display: flex; align-items: center; gap: 20px; }
.service-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,212,255,0.07); border: 1px solid var(--border);
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: all 0.3s;
}
.service-icon svg { width: 22px; height: 22px; color: var(--cyan); }
.service-card:hover .service-icon {
  background: rgba(0,212,255,0.14); border-color: rgba(0,212,255,0.5);
  box-shadow: 0 0 20px rgba(0,212,255,0.2);
}
.service-title { font-size: 1.15rem; font-weight: 700; transition: color 0.3s; }
.service-card:hover .service-title { color: #fff; }
.service-desc { font-size: 0.88rem; line-height: 1.7; color: var(--muted); transition: color 0.3s; }
.service-card:hover .service-desc { color: rgba(232,234,240,0.7); }
.service-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 36px 28px 36px 0; justify-content: flex-end;
  position: relative; z-index: 1;
}
.tag {
  padding: 4px 12px; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--border); color: var(--muted);
  transition: all 0.3s; white-space: nowrap;
}
.service-card:hover .tag { border-color: rgba(0,212,255,0.35); color: rgba(0,212,255,0.8); background: rgba(0,212,255,0.05); }

/* ── PROCESS ─────────────────────────────────────────────────── */
#process { background: var(--bg); }
.process-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0; margin-top: 60px; position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 40px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), transparent);
  opacity: 0.3;
}
.process-step { padding: 40px 28px; text-align: center; }
.step-bubble {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(0,212,255,0.07); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; position: relative; transition: all 0.4s;
}
.step-bubble::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid rgba(0,212,255,0.12); }
.process-step:hover .step-bubble { background: rgba(0,212,255,0.14); border-color: var(--cyan); box-shadow: var(--glow-cyan); }
.step-num {
  font-family: 'Space Mono', monospace; font-size: 1.1rem; font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.step-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step-desc  { font-size: 0.88rem; line-height: 1.6; color: var(--muted); }

/* ── WORK ────────────────────────────────────────────────────── */
#work { background: var(--bg2); }
.work-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; flex-wrap: wrap; gap: 24px; }
.work-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.work-card {
  background: var(--card); border: 1px solid var(--border);
  overflow: hidden; position: relative; cursor: none; transition: all 0.4s;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}
.work-card:nth-child(1) { grid-column: span 7; min-height: 380px; }
.work-card:nth-child(2) { grid-column: span 5; min-height: 380px; }
.work-card:nth-child(3) { grid-column: span 4; min-height: 280px; }
.work-card:nth-child(4) { grid-column: span 4; min-height: 280px; }
.work-card:nth-child(5) { grid-column: span 4; min-height: 280px; }
.work-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s; filter: brightness(0.3) saturate(0.8); }
.work-card:hover .work-card-bg { transform: scale(1.05); filter: brightness(0.5) saturate(1.2); }
.work-card-content {
  position: absolute; inset: 0; padding: 28px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(to top, rgba(13,13,20,0.95) 0%, transparent 60%);
}
.work-cat { font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cyan); margin-bottom: 8px; }
.work-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.work-excerpt { font-size: 0.82rem; color: var(--muted); line-height: 1.5; max-height: 0; overflow: hidden; transition: max-height 0.4s; }
.work-card:hover .work-excerpt { max-height: 80px; }
.work-card-hover-line {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.work-card:hover .work-card-hover-line { transform: scaleX(1); }
.wc1 { background: radial-gradient(ellipse at 30% 50%, rgba(0,212,255,0.2), rgba(0,88,160,0.15), var(--bg3)); }
.wc2 { background: radial-gradient(ellipse at 70% 30%, rgba(0,136,204,0.25), rgba(0,212,255,0.08), var(--bg3)); }
.wc3 { background: radial-gradient(ellipse at 50% 50%, rgba(255,45,107,0.18), rgba(0,212,255,0.08), var(--bg3)); }
.wc4 { background: radial-gradient(ellipse at 50% 70%, rgba(0,136,204,0.25), var(--bg3)); }
.wc5 { background: radial-gradient(ellipse at 30% 30%, rgba(0,212,255,0.2), rgba(255,45,107,0.08), var(--bg3)); }

/* ── ABOUT ───────────────────────────────────────────────────── */
#about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; aspect-ratio: 1; }
.about-frame {
  width: 100%; height: 100%; border: 1px solid var(--border); background: var(--card);
  position: relative; overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 32px 100%, 0 calc(100% - 32px));
  display: flex; align-items: center; justify-content: center;
}
.about-frame-inner {
  width: 80%; height: 80%;
  background: radial-gradient(ellipse, rgba(0,212,255,0.08), rgba(0,136,204,0.05), transparent);
  display: flex; align-items: center; justify-content: center;
}
.about-logo-big {
  width: 72%; height: auto;
  filter: drop-shadow(0 0 24px rgba(0,212,255,0.5)) drop-shadow(0 0 60px rgba(0,136,204,0.3));
  animation: float 5s ease-in-out infinite;
}
.about-dots { position: absolute; top: -20px; right: -20px; display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; }
.about-dots span { width: 4px; height: 4px; border-radius: 50%; background: rgba(0,212,255,0.2); }
.about-dots span:nth-child(odd) { background: rgba(255,45,107,0.2); }
.about-content h2 { margin-bottom: 20px; }
.about-content p { font-size: 0.95rem; line-height: 1.8; color: var(--muted); margin-bottom: 16px; }
.skills-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.skill-item { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--muted); }
.skill-item::before {
  content: ''; width: 6px; height: 6px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
#testimonials { background: var(--bg2); }
.testi-header { text-align: center; margin-bottom: 60px; }
.testi-header .section-desc { margin: 0 auto; }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.testi-card {
  padding: 36px; background: var(--card); border: 1px solid var(--border);
  position: relative; overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: all 0.3s;
}
.testi-card:hover { border-color: rgba(0,212,255,0.35); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.testi-card::before { content: '"'; position: absolute; top: 12px; right: 20px; font-size: 5rem; line-height: 1; color: rgba(0,212,255,0.06); font-family: Georgia, serif; }
.stars { display: flex; gap: 4px; margin-bottom: 16px; }
.star { width: 14px; height: 14px; background: var(--cyan); clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%); }
.testi-text { font-size: 0.9rem; line-height: 1.75; color: var(--muted); margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; color: var(--bg); flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9rem; }
.author-role { font-size: 0.75rem; color: var(--muted); }

/* ── CONTACT ─────────────────────────────────────────────────── */
#contact { background: var(--bg); position: relative; overflow: hidden; }
#contact::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,212,255,0.05) 0%, transparent 60%);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { font-size: 0.95rem; line-height: 1.7; color: var(--muted); margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border: 1px solid var(--border); background: var(--card);
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%); font-size: 0.88rem;
}
.contact-item-icon { color: var(--cyan); flex-shrink: 0; }
.contact-item-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.form-input, .form-select, .form-textarea {
  padding: 14px 18px; background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); color: var(--text);
  font-family: 'Exo 2', sans-serif; font-size: 0.9rem;
  outline: none; transition: all 0.3s;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px rgba(0,212,255,0.2), inset 0 0 20px rgba(0,212,255,0.03);
  background: rgba(0,212,255,0.03);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-select option { background: var(--bg2); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-note { font-size: 0.72rem; color: var(--muted); line-height: 1.5; padding: 12px 16px; background: rgba(0,212,255,0.03); border-left: 2px solid var(--cyan); }
.form-success { display: none; padding: 16px 20px; background: rgba(0,212,255,0.07); border: 1px solid var(--cyan); font-size: 0.88rem; text-align: center; clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%); }
.form-error  { display: none; padding: 16px 20px; background: rgba(255,50,50,0.07); border: 1px solid rgba(255,50,50,0.4); font-size: 0.88rem; text-align: center; clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%); }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer { padding: 60px 5% 40px; background: var(--bg2); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 48px; flex-wrap: wrap; gap: 40px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: var(--muted); max-width: 280px; margin-top: 8px; }
.footer-links-col h4 { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a { text-decoration: none; color: var(--muted); font-size: 0.85rem; transition: color 0.3s; }
.footer-links-col a:hover { color: var(--text); }
.footer-bottom { padding-top: 28px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 0.78rem; color: var(--muted); }
.footer-copy span { color: var(--cyan); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); color: var(--muted); text-decoration: none; transition: all 0.3s;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.social-link:hover { border-color: var(--cyan); color: var(--cyan); box-shadow: var(--glow-cyan); }

/* ── REVEAL ──────────────────────────────────────────────────── */
.reveal { opacity:0; transform:translateY(40px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:0.1s; }
.reveal-delay-2 { transition-delay:0.2s; }
.reveal-delay-3 { transition-delay:0.3s; }

/* ── UTILITY ─────────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-stats, .hero-logo-float { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .work-card:nth-child(n) { grid-column: span 12; }
  .process-grid::before { display: none; }
  nav.open .nav-links { display: flex; }
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: var(--bg2); flex-direction: column; align-items: center; justify-content: center;
    gap: 32px; z-index: 99;
  }
  .nav-links a { font-size: 1.2rem; }
  .nav-toggle { display: flex; z-index: 100; }
  .nav-cta { display: none; }
  .about-visual { max-width: 320px; margin: 0 auto; }
  .service-card { grid-template-columns: 48px 1fr; }
  .service-body { grid-template-columns: 1fr; gap: 12px; padding: 20px 16px; }
  .service-tags { grid-column: 1/-1; justify-content: flex-start; padding: 0 16px 24px 72px; }
  .service-num { padding: 24px 0 0 16px; }
}
@media (max-width: 600px) {
  section { padding: 70px 6%; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
}
