/* ============================================================
   GAME GLAZE — Studio Website Stylesheet
   ============================================================ */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --bg: #050710;
  --surface: rgba(10, 15, 38, 0.75);
  --surface-strong: #0d1530;
  --text: #e4edff;
  --muted: #6b8ab5;
  --primary: #00eeff;
  --secondary: #8a6eff;
  --accent: #ff2d78;
  --linkedin: #0a66c2;
  --line: rgba(90, 130, 200, 0.18);
  --line-bright: rgba(0, 238, 255, 0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --glow-c: 0 0 25px rgba(0, 238, 255, 0.35), 0 0 70px rgba(0, 238, 255, 0.12);
  --glow-p: 0 0 25px rgba(138, 110, 255, 0.35), 0 0 70px rgba(138, 110, 255, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Space Grotesk", "Rajdhani", sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.65;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== BACKGROUND LAYERS ===== */
#starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 238, 255, 0.008) 3px,
    rgba(0, 238, 255, 0.008) 6px
  );
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 238, 255, 0.1), transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.3s ease;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: "Orbitron", sans-serif; line-height: 1.05; }

h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.05rem; }

.eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  font-size: 0.75rem;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 6vw;
  background: rgba(5, 7, 16, 0.88);
  backdrop-filter: blur(22px) saturate(1.8);
  border-bottom: 1px solid var(--line);
}

.logo {
  color: #fff;
  text-decoration: none;
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  letter-spacing: 2px;
  text-shadow: 0 0 30px rgba(0, 238, 255, 0.45);
  flex-shrink: 0;
}

.logo span { color: var(--primary); }

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.4px;
  transition: color 0.2s;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav a:hover { color: var(--primary); }
.nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  flex-shrink: 0;
}

/* LinkedIn button */
.btn-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.48rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(10, 102, 194, 0.55);
  background: rgba(10, 102, 194, 0.12);
  color: #6db8ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-linkedin:hover {
  background: rgba(10, 102, 194, 0.3);
  border-color: var(--linkedin);
  color: #fff;
  box-shadow: 0 0 18px rgba(10, 102, 194, 0.4);
}

/* CTA Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.58rem 1.4rem;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.3px;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn-primary {
  color: #020a14;
  background: linear-gradient(135deg, var(--primary) 0%, #7ee8ff 100%);
  box-shadow: 0 0 18px rgba(0, 238, 255, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-c);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line-bright);
  background: rgba(0, 238, 255, 0.05);
}

.btn-ghost:hover {
  background: rgba(0, 238, 255, 0.11);
  border-color: var(--primary);
  color: var(--primary);
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== LAYOUT ===== */
main {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 1.5rem 0 5rem;
}

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  min-height: 88vh;
  padding: 3rem 0 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line-bright);
  background: rgba(0, 238, 255, 0.07);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 238, 255, 0.6); }
  50% { opacity: 0.85; box-shadow: 0 0 0 7px rgba(0, 238, 255, 0); }
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  letter-spacing: -1px;
  font-weight: 900;
  margin-bottom: 1.3rem;
}

.hero-highlight {
  background: linear-gradient(100deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glitch effect */
.glitch { position: relative; display: inline-block; }

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

.glitch::before {
  color: var(--primary);
  clip-path: polygon(0 0, 100% 0, 100% 42%, 0 42%);
  animation: glitch-a 5s infinite;
}

.glitch::after {
  color: var(--accent);
  clip-path: polygon(0 58%, 100% 58%, 100% 100%, 0 100%);
  animation: glitch-b 5s infinite;
}

@keyframes glitch-a {
  0%, 88%, 100% { opacity: 0; transform: none; }
  90%  { opacity: 0.9; transform: translate(-3px,  1px); }
  92%  { opacity: 0.9; transform: translate( 3px, -1px); }
  94%  { opacity: 0; }
}

@keyframes glitch-b {
  0%, 86%, 100% { opacity: 0; transform: none; }
  88%  { opacity: 0.8; transform: translate( 3px,  2px); }
  90%  { opacity: 0.8; transform: translate(-3px, -2px); }
  92%  { opacity: 0; }
}

.hero-copy {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
  max-width: 54ch;
  margin-bottom: 2rem;
}

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

/* Hero image panel */
.hero-visual { position: relative; }

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-bright);
  box-shadow: var(--glow-c), inset 0 0 60px rgba(0, 238, 255, 0.04);
}

.hero-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  filter: saturate(1.3) contrast(1.08) brightness(0.92);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 238, 255, 0.1) 0%,
    rgba(138, 110, 255, 0.08) 100%
  );
  mix-blend-mode: color;
  pointer-events: none;
}

/* Floating info cards */
.floating-card {
  position: absolute;
  backdrop-filter: blur(16px);
  background: rgba(8, 12, 30, 0.88);
  border: 1px solid var(--line-bright);
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  animation: float-y 3.5s ease-in-out infinite;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.card-1 { bottom: 1.8rem; left: -2.2rem; }
.card-2 { top: 1.8rem; right: -2.2rem; animation-delay: 1.75s; }

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

.fc-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fc-value {
  font-family: "Orbitron", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

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

.stat-val {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-num {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--primary);
  text-shadow: 0 0 20px rgba(0, 238, 255, 0.5);
}

.stat-suffix {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 900;
  color: var(--primary);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.stat-divider {
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, transparent, var(--line-bright), transparent);
  flex-shrink: 0;
}

/* ===== SECTION LAYOUT ===== */
.section { margin-top: 6rem; }

.section-head { margin-bottom: 2.5rem; }

.section-head h2 { margin: 0.5rem 0 0.8rem; }

.section-desc {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 54ch;
  line-height: 1.65;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 1.8rem;
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 238, 255, 0.04), rgba(138, 110, 255, 0.04));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

/* animated border glow on hover */
.service-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
  background-size: 300% 300%;
  animation: border-spin 4s linear infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.35s ease;
}

@keyframes border-spin {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: var(--line-bright);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45), 0 0 25px rgba(0, 238, 255, 0.08);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(0, 238, 255, 0.13), rgba(138, 110, 255, 0.1));
  border: 1px solid var(--line-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  color: var(--primary);
  transition: box-shadow 0.3s ease;
}

.service-card:hover .service-icon { box-shadow: 0 0 18px rgba(0, 238, 255, 0.35); }

.service-icon svg { width: 26px; height: 26px; }

.service-card h3 {
  font-size: 0.98rem;
  margin-bottom: 0.6rem;
  color: var(--text);
  letter-spacing: 0.5px;
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.62;
}

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.portfolio-featured {
  grid-column: span 2;
}

.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
  background: #08101f;
}

.portfolio-card:hover {
  border-color: var(--line-bright);
  transform: translateY(-5px);
  box-shadow: var(--glow-c);
}

.portfolio-img {
  position: relative;
  width: 100%;
  height: 270px;
  overflow: hidden;
}

.portfolio-featured .portfolio-img { height: 380px; }

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease, filter 0.55s ease;
  filter: saturate(1.15) brightness(0.85);
}

.portfolio-card:hover .portfolio-img img {
  transform: scale(1.06);
  filter: saturate(1.4) brightness(0.7);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 7, 16, 0.97) 0%,
    rgba(5, 7, 16, 0.45) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
  transition: background 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
  background: linear-gradient(
    to top,
    rgba(5, 7, 16, 0.98) 0%,
    rgba(5, 7, 16, 0.65) 55%,
    rgba(0, 238, 255, 0.07) 100%
  );
}

.portfolio-info { width: 100%; }

/* Platform tags */
.ptag {
  display: inline-block;
  padding: 0.18rem 0.65rem;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
  border: 1px solid;
}

.ptag-mobile {
  color: var(--primary);
  border-color: rgba(0, 238, 255, 0.4);
  background: rgba(0, 238, 255, 0.1);
}

.ptag-ar {
  color: #ffb547;
  border-color: rgba(255, 181, 71, 0.4);
  background: rgba(255, 181, 71, 0.08);
}

.ptag-vr {
  color: #b09fff;
  border-color: rgba(138, 110, 255, 0.4);
  background: rgba(138, 110, 255, 0.1);
}

.portfolio-info h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
}

.portfolio-info p {
  color: rgba(180, 200, 230, 0.85);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}

.portfolio-card:hover .portfolio-info p {
  opacity: 1;
  transform: translateY(0);
}

.work-badge {
  display: inline-block;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  background: rgba(138, 110, 255, 0.18);
  border: 1px solid rgba(138, 110, 255, 0.4);
  color: #b5a8ff;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.portfolio-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding: 1.4rem 1.8rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.portfolio-cta p { color: var(--muted); font-size: 0.97rem; }

/* ===== ABOUT ===== */
.about-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 3rem 3.5rem;
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}

.about-wrap::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(138, 110, 255, 0.12), transparent 65%);
  pointer-events: none;
}

.about-content h2 { margin: 0.5rem 0 1.2rem; }

.about-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
  margin-bottom: 0.85rem;
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.6rem;
}

.tech-pills span {
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(0, 238, 255, 0.06);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.22s ease;
}

.tech-pills span:hover {
  border-color: var(--line-bright);
  color: var(--primary);
  background: rgba(0, 238, 255, 0.1);
}

.studio-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.studio-stat {
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(0, 238, 255, 0.05), rgba(138, 110, 255, 0.05));
  border-radius: 14px;
  padding: 1.3rem;
  transition: all 0.3s ease;
}

.studio-stat:hover {
  border-color: var(--line-bright);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.studio-stat h4 {
  font-size: 0.92rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.studio-stat p {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.55;
}

/* ===== CONTACT ===== */
.contact-section { position: relative; }

.contact-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0, 238, 255, 0.06), transparent 70%);
  pointer-events: none;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.contact-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  cursor: default;
}

a.contact-card { cursor: pointer; }

.contact-card:hover {
  border-color: var(--line-bright);
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35), var(--glow-c);
}

.linkedin-card:hover {
  border-color: rgba(10, 102, 194, 0.7);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35), 0 0 25px rgba(10, 102, 194, 0.3);
}

.cc-icon {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(0, 238, 255, 0.1), rgba(138, 110, 255, 0.08));
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
}

.contact-card:hover .cc-icon {
  box-shadow: 0 0 22px rgba(0, 238, 255, 0.3);
  border-color: var(--line-bright);
}

.linkedin-card .cc-icon {
  background: rgba(10, 102, 194, 0.12);
  border-color: rgba(10, 102, 194, 0.35);
  color: #5aabf0;
}

.linkedin-card:hover .cc-icon {
  box-shadow: 0 0 22px rgba(10, 102, 194, 0.35);
  border-color: rgba(10, 102, 194, 0.6);
}

.cc-icon svg { width: 25px; height: 25px; }

.cc-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.cc-value {
  font-weight: 600;
  color: var(--text);
  font-size: 0.93rem;
  word-break: break-word;
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 5rem;
  padding: 2.5rem 0;
  background: rgba(5, 7, 16, 0.6);
  backdrop-filter: blur(12px);
}

.footer-inner {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.footer-links {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.87rem;
  font-weight: 600;
  transition: color 0.2s;
}

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

.footer-copy {
  color: var(--muted);
  font-size: 0.8rem;
  width: 100%;
  text-align: center;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
  margin-top: 0.5rem;
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2.5rem 0 1.5rem;
  }

  .hero-visual { display: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }

  .portfolio-featured { grid-column: span 2; }

  .about-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 2.5rem;
  }

  .contact-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }

  .header-actions .btn-linkedin { display: none; }

  .menu-toggle { display: flex; }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    background: rgba(5, 7, 16, 0.97);
    padding: 1.5rem 6vw;
    border-bottom: 1px solid var(--line);
    gap: 1.2rem;
    z-index: 99;
    backdrop-filter: blur(24px);
  }

  .nav.open a {
    font-size: 1.1rem;
    padding: 0.4rem 0;
  }

  .stat-divider { display: none; }

  .stat-item { flex: 1; min-width: 100px; }

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

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

  .portfolio-featured { grid-column: span 1; }

  .portfolio-cta {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .about-wrap { padding: 1.8rem; }

  .studio-stat-grid { grid-template-columns: 1fr; }

  .contact-cards { grid-template-columns: 1fr; }

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

  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .site-header { padding: 0.85rem 4vw; }

  h1 { font-size: 2.3rem; letter-spacing: -0.5px; }

  .stats-bar { padding: 1.5rem; }

  main { padding: 1rem 0 3rem; }
}
