* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #02060d;
  --bg2: #050b15;
  --panel: #07111f;
  --blue: #008cff;
  --cyan: #20cfff;
  --white: #f2f8ff;
  --muted: #7e94aa;
  --line: rgba(0, 144, 255, .24);
  --glow: 0 0 25px rgba(0, 140, 255, .35);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: "Rajdhani", sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.cursor-glow {
  width: 320px;
  height: 320px;
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(0,140,255,.08), transparent 68%);
  transform: translate(-50%, -50%);
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("imagenes/content.png");
  background-size: cover;
  background-position: center top;
  opacity: .44;
  filter: saturate(1.25) contrast(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,6,13,.98) 0%, rgba(2,6,13,.72) 34%, rgba(2,6,13,.2) 70%, rgba(2,6,13,.88) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 25%, rgba(0,0,0,.2) 100%);
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 88px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,157,255,.14);
  z-index: 5;
  backdrop-filter: blur(7px);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
}

.brand-mark { color: var(--cyan); font-size: 25px; text-shadow: 0 0 18px var(--blue); }
.brand-name { font-size: 11px; letter-spacing: 4px; }

.nav-links {
  display: flex;
  gap: 35px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #b5c9da;
}

.nav-links a { transition: .25s; }
.nav-links a:hover { color: var(--cyan); text-shadow: 0 0 10px var(--blue); }

.discord-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid var(--blue);
  background: linear-gradient(135deg, rgba(0,119,255,.22), rgba(0,0,0,.35));
  box-shadow: inset 0 0 22px rgba(0,144,255,.08), 0 0 20px rgba(0,126,255,.12);
  color: white;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  transition: .25s;
}

.discord-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 28px rgba(0,140,255,.4);
  background: rgba(0,140,255,.22);
}

.discord-btn.small { padding: 12px 18px; font-size: 11px; }
.discord-btn .arrow { color: var(--cyan); font-size: 18px; }

.hero-content {
  position: relative;
  z-index: 2;
  width: min(650px, 88vw);
  margin-left: 8vw;
  margin-top: 70px;
}

.eyebrow {
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.eyebrow span {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

h1, h2 {
  font-family: "Orbitron", sans-serif;
  line-height: .92;
  letter-spacing: -2px;
}

h1 {
  font-size: clamp(50px, 7vw, 98px);
  text-shadow: 0 0 25px rgba(0,145,255,.22);
}

h1 em, h2 em {
  color: transparent;
  -webkit-text-stroke: 1px #dff3ff;
  font-style: normal;
  text-shadow: 0 0 18px rgba(0,140,255,.45);
}

.hero-text {
  margin-top: 26px;
  max-width: 520px;
  color: #9db1c3;
  font-size: 19px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.primary-btn, .ghost-btn {
  padding: 15px 23px;
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  transition: .25s;
}

.primary-btn {
  background: var(--blue);
  box-shadow: 0 0 28px rgba(0,140,255,.35);
}
.primary-btn:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(0,140,255,.55); }
.primary-btn span { margin-left: 20px; }

.ghost-btn {
  border: 1px solid rgba(125,190,235,.3);
  color: #cbdce8;
}
.ghost-btn:hover { border-color: var(--cyan); color: white; background: rgba(0,140,255,.08); }

.hero-stats {
  position: absolute;
  right: 7vw;
  bottom: 55px;
  z-index: 3;
  display: flex;
  gap: 42px;
  border-top: 1px solid rgba(0,157,255,.28);
  padding-top: 16px;
}

.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: "Orbitron"; font-size: 24px; color: white; }
.hero-stats span { font-size: 10px; letter-spacing: 2px; color: #7791a8; margin-top: 4px; }

.scroll-hint {
  position: absolute;
  bottom: 38px;
  left: 7vw;
  z-index: 3;
  font-family: "Orbitron";
  font-size: 9px;
  letter-spacing: 2px;
  color: #668198;
  display: flex;
  align-items: center;
  gap: 10px;
}

.scroll-hint span { width: 5px; height: 28px; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }

section { position: relative; padding: 110px 7vw; }

.categories {
  background:
    radial-gradient(circle at 15% 20%, rgba(0,113,255,.09), transparent 30%),
    linear-gradient(180deg, #02060d, #040a13);
}

.section-heading { margin-bottom: 55px; }
.section-heading h2 { font-size: clamp(34px, 4.5vw, 62px); }
.section-heading > p:last-child { color: #758ba0; font-size: 18px; margin-top: 15px; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.category-card {
  position: relative;
  min-height: 260px;
  padding: 31px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(4,12,22,.55);
  overflow: hidden;
  transition: .3s;
}

.category-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -50px;
  bottom: -50px;
  background: radial-gradient(circle, rgba(0,140,255,.28), transparent 65%);
  transition: .3s;
}

.category-card:hover {
  background: rgba(0,83,155,.1);
  transform: translateY(-4px);
  box-shadow: inset 0 0 30px rgba(0,140,255,.06);
}

.card-number { font-family: "Orbitron"; color: #36516a; font-size: 11px; }
.category-icon { font-size: 43px; color: var(--cyan); margin: 18px 0 12px; text-shadow: 0 0 18px rgba(0,180,255,.55); }
.category-card h3 { font-family: "Orbitron"; font-size: 18px; letter-spacing: 2px; }
.category-card p { color: #71879b; max-width: 320px; margin-top: 10px; line-height: 1.45; }
.category-card a { display: inline-block; margin-top: 18px; color: var(--cyan); font-family: "Orbitron"; font-size: 9px; letter-spacing: 1.5px; }
.category-card a span { margin-left: 10px; }

.portfolio {
  background: #02060d;
  border-top: 1px solid rgba(0,140,255,.08);
}

.portfolio-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}

.filters { display: flex; gap: 6px; flex-wrap: wrap; }
.filter {
  cursor: pointer;
  padding: 9px 13px;
  border: 1px solid rgba(0,140,255,.2);
  background: transparent;
  color: #71869a;
  font-family: "Orbitron";
  font-size: 8px;
  letter-spacing: 1px;
  transition: .2s;
}
.filter:hover, .filter.active { color: white; border-color: var(--cyan); background: rgba(0,140,255,.12); box-shadow: 0 0 14px rgba(0,140,255,.1); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project { min-width: 0; }

.project-art {
    height: 290px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,150,255,.23);
    background: #07111e;

    display: flex;
    align-items: center;
    justify-content: center;
}

.project.tall .project-art {
    height: 390px;
}

.project-art::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(
        135deg,
        rgba(0,140,255,.1),
        transparent 42%,
        rgba(0,0,0,.6)
    );

    pointer-events: none;
}

.project-art img {

    border-radius: 10px;
    position: relative;
    z-index: 2;

    display: block;

    width: auto !important;
    height: auto !important;

    max-width: 90% !important;
    max-height: 90% !important;

    object-fit: contain;
    padding: 0 !important;
}

.project:hover .project-art { border-color: rgba(0,190,255,.75); box-shadow: 0 0 35px rgba(0,130,255,.12); }

.art-label {
  position: absolute;
  top: 15px;
  left: 15px;
  font: 9px "Orbitron";
  letter-spacing: 2px;
  color: #81a6c3;
}

.logo-art { background: radial-gradient(circle at 50% 50%, #06305a, #030911 60%); }
.energy-ring {
  width: 190px; height: 190px; border: 1px solid #00b7ff;
  border-radius: 50%; box-shadow: 0 0 25px #007cff, inset 0 0 35px rgba(0,180,255,.2);
  transform: rotate(30deg);
}
.project-logo {
  position: absolute;
  font: 900 75px "Orbitron";
  color: white;
  text-shadow: 0 0 15px #00aaff, 0 0 45px #006cff;
  transform: skew(-8deg);
}

.emote-art { background: radial-gradient(circle at center, #103761, #020711 65%); }
.emote-face { font: 900 64px "Orbitron"; color: white; text-shadow: 0 0 20px #00bfff; }

.banner-art { background: linear-gradient(135deg, #041a30, #02060c); place-items: center; }
.banner-lines { position: absolute; width: 150%; height: 70px; border-top: 2px solid #00aaff; border-bottom: 2px solid #0070ff; transform: rotate(-13deg); box-shadow: 0 0 20px #008cff; }
.banner-art strong { z-index: 1; font: 900 44px "Orbitron"; text-align: center; text-shadow: 0 0 22px #008cff; }
.banner-art small { font-size: 13px; letter-spacing: 7px; color: #55dfff; }

.shirt-art { background: radial-gradient(circle at 50% 30%, #10395e, #02060c 68%); }
.shirt {
  width: 150px; height: 170px; clip-path: polygon(20% 0, 38% 10%, 62% 10%, 80% 0, 100% 23%, 80% 42%, 72% 27%, 72% 100%, 28% 100%, 28% 27%, 20% 42%, 0 23%);
  background: linear-gradient(150deg, #172c3e, #02050a);
  display: grid; place-content: center; text-align: center;
  font: 900 20px "Orbitron"; letter-spacing: 2px;
  box-shadow: 0 0 30px rgba(0,140,255,.2);
}
.shirt small { color: #00c8ff; font-size: 7px; letter-spacing: 3px; }

.wolf-art { background: radial-gradient(circle, #10375b, #02070e 65%); }
.wolf { font: 900 110px "Orbitron"; color: #dff8ff; text-shadow: 0 0 18px #00aaff, 0 0 60px #006cff; transform: skew(-10deg); }

.skull-art { background: radial-gradient(circle at 50% 50%, #16395b, #02060c 65%); }
.skull { font-size: 105px; filter: drop-shadow(0 0 20px #008cff); }

.project-info {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 13px 2px;
  border-bottom: 1px solid rgba(0,140,255,.12);
}
.project-info span { font: 8px "Orbitron"; color: #57738b; letter-spacing: 1.5px; }
.project-info h3 { font: 14px "Orbitron"; letter-spacing: 1px; }

.project.hidden { display: none; }

.process {
  background:
    linear-gradient(rgba(2,6,13,.9), rgba(2,6,13,.96)),
    url("imagenes/content.png") center/cover fixed;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.process-step { padding: 35px 25px 10px 0; position: relative; }
.process-step + .process-step { padding-left: 25px; border-left: 1px solid var(--line); }
.process-step > span { font: 11px "Orbitron"; color: var(--cyan); }
.process-step .line { height: 1px; background: rgba(0,140,255,.25); margin: 24px 0; }
.process-step h3 { font: 700 17px "Orbitron"; letter-spacing: 1px; }
.process-step p { margin-top: 10px; color: #71869a; line-height: 1.5; max-width: 230px; }

.contact {
  min-height: 520px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(0,140,255,.15);
  background: radial-gradient(circle at center, #06254a 0%, #02060d 52%);
}

.contact::before, .contact::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  box-shadow: 0 0 25px var(--blue);
  transform: rotate(18deg);
}
.contact::before { left: -160px; top: 35%; }
.contact::after { right: -160px; bottom: 35%; transform: rotate(-18deg); }

.contact-content { position: relative; z-index: 2; }
.contact-content .eyebrow { justify-content: center; }
.contact-content h2 { font-size: clamp(48px, 7vw, 88px); }
.contact-content > p:not(.eyebrow) { color: #8097aa; font-size: 18px; margin: 20px auto 30px; }

.discord-btn.big {
  min-width: 330px;
  padding: 17px 22px;
  text-align: left;
}
.discord-symbol { font-size: 25px; color: var(--cyan); }
.discord-btn.big span:nth-child(2) { display: flex; flex-direction: column; gap: 3px; }
.discord-btn.big small { color: #6e8ca4; font-size: 8px; letter-spacing: 2px; }
.discord-btn.big strong { margin-left: auto; color: var(--cyan); font-size: 22px; }

footer {
  min-height: 90px;
  padding: 25px 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0,140,255,.13);
  background: #01040a;
  color: #5d758b;
}
.footer-brand { font: 900 13px "Orbitron"; color: white; }
.footer-brand span { color: var(--cyan); }
footer p, footer a { font: 8px "Orbitron"; letter-spacing: 2px; }
footer a { color: var(--cyan); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .navbar { padding: 0 5vw; }
  .hero-content { margin-left: 5vw; }
  .hero-stats { right: 5vw; }
  .category-grid, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(3) { border-left: 0; padding-left: 0; }
}

@media (max-width: 620px) {
  .hero { min-height: 760px; }
  .hero-image { background-position: 58% top; opacity: .28; }
  .hero-overlay { background: linear-gradient(90deg, rgba(2,6,13,.95), rgba(2,6,13,.75)); }
  .brand-name { display: none; }
  .discord-btn.small { padding: 9px 12px; }
  .hero-content { margin: 60px 6vw 0; }
  h1 { font-size: 48px; }
  .hero-text { font-size: 16px; }
  .hero-stats { display: none; }
  .scroll-hint { bottom: 22px; }
  section { padding: 75px 6vw; }
  .category-grid, .portfolio-grid, .process-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 230px; }
  .portfolio-heading { align-items: start; flex-direction: column; }
  .project.tall .project-art, .project-art { height: 280px; }
  .process-step + .process-step { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); }
  .process-step { padding: 30px 0; }
  footer { flex-direction: column; gap: 14px; text-align: center; }
  .discord-btn.big { min-width: 0; width: 100%; }
}


/* ===== RESPONSIVE EXTRA ===== */
@media (max-width: 1100px) {
  .hero-image { background-position: center top; }
  .hero-content { margin-left: 6vw; }
  .hero-stats { right: 6vw; gap: 25px; }
}

@media (max-width: 768px) {
  .navbar { height: 72px; }
  .navbar .brand-mark { font-size: 21px; }
  .hero { min-height: 720px; }
  .hero-image {
    background-size: auto 100%;
    background-position: 60% top;
    opacity: .34;
  }
  .hero-overlay {
    background: linear-gradient(90deg, rgba(2,6,13,.96) 0%, rgba(2,6,13,.76) 100%);
  }
  .hero-content { width: auto; margin: 45px 7vw 0; }
  .hero-actions a { flex: 1 1 190px; text-align: center; }
  .section-heading { margin-bottom: 38px; }
  .filters { width: 100%; }
  .filter { flex: 1 1 auto; }
}

@media (max-width: 480px) {
  .navbar { padding: 0 5vw; }
  .discord-btn.small span:first-child { display: none; }
  .discord-btn.small { width: 42px; height: 38px; padding: 0; }
  .hero { min-height: 680px; }
  .hero-image { background-position: 62% top; opacity: .25; }
  .hero-content { margin-top: 20px; }
  .eyebrow { font-size: 8px; letter-spacing: 2px; }
  h1 { font-size: clamp(42px, 13vw, 58px); }
  .hero-text { font-size: 15px; }
  .primary-btn, .ghost-btn { width: 100%; }
  section { padding: 65px 5vw; }
  .section-heading h2 { font-size: 34px; }
  .category-card { padding: 25px; }
  .project-art, .project.tall .project-art { height: 255px; }
  .contact { min-height: 460px; }
  .contact-content { width: 100%; }
  .contact-content h2 { font-size: 45px; }
  .discord-btn.big { min-width: 0; width: 100%; }
}

@media (max-width: 620px) {
    .project-art,
    .project.tall .project-art {
        height: 280px;
    }

    .project-art img {
        padding: 15px;
    }
}

