:root {
  --red: #f80040;
  --cyan: #00c3c9;
  --bg: #0d0f14;
  --bg2: #12151d;
  --bg3: #181c27;
  --text: #e8eaf0;
  --muted: #8890a4;
  --br: rgba(248, 0, 64, 0.18);
  --bc: rgba(0, 195, 201, 0.2);
  --gr: 0 0 40px rgba(248, 0, 64, 0.5), 0 0 80px rgba(248, 0, 64, 0.2);
  --gc: 0 0 40px rgba(0, 195, 201, 0.5), 0 0 80px rgba(0, 195, 201, 0.2);
  --fh: "Orbitron", system-ui, sans-serif;
  --fs: "Rajdhani", system-ui, sans-serif;
  --fb: "Inter", system-ui, sans-serif;
  --r: 4px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
a {
  color: inherit;
  text-decoration: none;
}

/* ═══════════════════ SCENE ═══════════════════ */
.scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.sg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 195, 201, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 195, 201, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gd 25s linear infinite;
}
@keyframes gd {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 60px 60px;
  }
}
.sf {
  position: absolute;
  bottom: -10%;
  left: -50%;
  width: 200%;
  height: 60%;
  background-image:
    linear-gradient(rgba(248, 0, 64, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 0, 64, 0.07) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: perspective(500px) rotateX(65deg);
  transform-origin: center bottom;
  animation: fr 3.5s linear infinite;
}
@keyframes fr {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 80px;
  }
}
.or {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(248, 0, 64, 0.16) 0%,
    transparent 70%
  );
  top: -250px;
  right: -250px;
  border-radius: 50%;
  filter: blur(60px);
  animation: od1 22s ease-in-out infinite alternate;
}
.oc {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 195, 201, 0.12) 0%,
    transparent 70%
  );
  bottom: -200px;
  left: -200px;
  border-radius: 50%;
  filter: blur(60px);
  animation: od2 28s ease-in-out infinite alternate;
}
@keyframes od1 {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-80px, 80px) scale(1.2);
  }
}
@keyframes od2 {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(60px, -60px) scale(1.3);
  }
}
.slw {
  position: absolute;
  inset: 0;
}
.sl {
  position: absolute;
  height: 1px;
  opacity: 0;
  animation: sk 2.8s ease-in-out infinite;
}
.sl:nth-child(1) {
  top: 18%;
  width: 38%;
  background: linear-gradient(90deg, transparent, #f80040, transparent);
  animation-duration: 2.3s;
}
.sl:nth-child(2) {
  top: 33%;
  width: 52%;
  background: linear-gradient(90deg, transparent, #f80040, transparent);
  animation-duration: 2.9s;
  animation-delay: 0.7s;
}
.sl:nth-child(3) {
  top: 58%;
  width: 28%;
  background: linear-gradient(90deg, transparent, #00c3c9, transparent);
  animation-duration: 2.1s;
  animation-delay: 1.3s;
}
.sl:nth-child(4) {
  top: 72%;
  width: 44%;
  background: linear-gradient(90deg, transparent, #f80040, transparent);
  animation-duration: 3.2s;
  animation-delay: 1.9s;
}
.sl:nth-child(5) {
  top: 47%;
  width: 33%;
  background: linear-gradient(90deg, transparent, #00c3c9, transparent);
  animation-duration: 2.5s;
  animation-delay: 0.5s;
}
@keyframes sk {
  0% {
    left: -60%;
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  90% {
    opacity: 0.9;
  }
  100% {
    left: 110%;
    opacity: 0;
  }
}
.scl {
  position: fixed;
  inset: 0;
  z-index: 2;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.06) 2px,
    rgba(0, 0, 0, 0.06) 4px
  );
  pointer-events: none;
  animation: scf 8s steps(1) infinite;
}
@keyframes scf {
  0%,
  95%,
  100% {
    opacity: 1;
  }
  96% {
    opacity: 0.85;
  }
  97% {
    opacity: 1;
  }
  98% {
    opacity: 0.9;
  }
}

/* ═══════════════════ LAYOUT ═══════════════════ */
.w {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.c {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── TOPBAR ── */
.tb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--br);
  background: rgba(13, 15, 20, 0.75);
  backdrop-filter: blur(20px);
  z-index: 100;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.tbl {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hex {
  width: 48px;
  height: 48px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(248, 0, 64, 0.5);
  background: var(--red);
  animation: hexglow 3s ease-in-out infinite alternate;
}
@keyframes hexglow {
  from {
    box-shadow: 0 0 12px rgba(248, 0, 64, 0.4);
  }
  to {
    box-shadow:
      0 0 30px rgba(248, 0, 64, 0.9),
      0 0 60px rgba(248, 0, 64, 0.3);
  }
}
.wm {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}
.wm em {
  color: var(--red);
  font-style: normal;
}
.wt {
  font-family: var(--fs);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}
.tbn {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.tbn a {
  font-family: var(--fs);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.tbn a:hover {
  color: var(--cyan);
}

/* ── HERO ── */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 6rem;
  text-align: center;
}
.hi {
  max-width: 1000px;
}
.ey {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--fs);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 2.5rem;
  padding: 0.45rem 1.25rem;
  border: 1px solid var(--bc);
  border-radius: var(--r);
  background: rgba(0, 195, 201, 0.05);
}
.ey::before,
.ey::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--cyan);
  opacity: 0.6;
}
.ht {
  font-family: var(--fh);
  font-weight: 900;
  font-size: clamp(3.2rem, 10vw, 8.5rem);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: #fff;
  position: relative;
}
.ht .atg {
  display: block;
  color: var(--red);
  animation: tg 4s ease-in-out infinite alternate;
}
.ht .sim {
  display: block;
}
@keyframes tg {
  from {
    text-shadow:
      0 0 30px rgba(248, 0, 64, 0.4),
      0 0 60px rgba(248, 0, 64, 0.2);
  }
  to {
    text-shadow:
      0 0 70px rgba(248, 0, 64, 0.9),
      0 0 140px rgba(248, 0, 64, 0.4),
      0 0 220px rgba(248, 0, 64, 0.1);
  }
}
.ht::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: htline 4s ease-in-out infinite alternate;
}
@keyframes htline {
  from {
    width: 30%;
    opacity: 0.3;
  }
  to {
    width: 60%;
    opacity: 0.8;
  }
}
.hs {
  font-family: var(--fs);
  font-size: clamp(0.9rem, 2.5vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2.5rem 0;
}
.hs span {
  color: var(--cyan);
}
.hd {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 3.5rem;
  line-height: 1.85;
  font-weight: 300;
}

/* ── CTA ── */
.cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--fs);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  border-radius: var(--r);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  border: none;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.4s;
}
.btn:hover::before {
  transform: translateX(100%);
}
.btn-r {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 20px rgba(248, 0, 64, 0.35);
}
.btn-r:hover {
  box-shadow: var(--gr);
  transform: translateY(-2px);
}
.btn-g {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--bc);
}
.btn-g:hover {
  background: rgba(0, 195, 201, 0.08);
  box-shadow: var(--gc);
  transform: translateY(-2px);
}

/* ── FEAT STRIP ── */
.fstrip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--br);
  border: 1px solid var(--br);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 2rem;
}
.fc {
  background: var(--bg2);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.2s;
  position: relative;
  text-align: left;
}
.fc::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.fc:hover {
  background: var(--bg3);
}
.fc:hover::after {
  transform: scaleX(1);
}
.fc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(248, 0, 64, 0.04),
    rgba(0, 195, 201, 0.03)
  );
  opacity: 0;
  animation: fc-glow 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes fc-glow {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.fi {
  width: 40px;
  height: 40px;
  border-radius: var(--r);
  background: rgba(248, 0, 64, 0.1);
  border: 1px solid var(--br);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.3rem;
}
.fi svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fn {
  font-family: var(--fs);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.fd {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── SECTIONS ── */
.sec {
  padding: 8rem 0;
  border-top: 1px solid var(--br);
  position: relative;
}
.sec::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(248, 0, 64, 0.5) 20%,
    rgba(0, 195, 201, 0.5) 80%,
    transparent
  );
  animation: trace 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes trace {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleX(0.8);
  }
  50% {
    opacity: 0.8;
    transform: scaleX(1);
  }
}
.sec-bg2 {
  background: var(--bg2);
}

.slb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--fs);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}
.slb::after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--red);
  opacity: 0.5;
}
.st {
  font-family: var(--fh);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.st span {
  color: var(--cyan);
}
.sb {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.9;
  max-width: 620px;
}

/* ── PROJECTS GRID ── */
.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.pcard {
  background: var(--bg3);
  border: 1px solid var(--br);
  border-radius: var(--r);
  padding: 2.2rem 1.8rem;
  position: relative;
  transition:
    border-color 0.3s,
    transform 0.2s;
  display: flex;
  flex-direction: column;
}
.pcard:hover {
  transform: translateY(-5px);
}
.pcard::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--r) + 1px);
  border: 1px solid transparent;
  animation: wf-pulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes wf-pulse {
  0%,
  100% {
    border-color: transparent;
    box-shadow: none;
  }
  50% {
    border-color: rgba(248, 0, 64, 0.25);
    box-shadow: inset 0 0 12px rgba(248, 0, 64, 0.06);
  }
}

.pcard-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.pcard-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}
.pcard-icon svg {
  width: 22px;
  height: 22px;
}

.pcard-badge {
  font-family: var(--fs);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
}
.pcard-badge-soon {
  color: var(--red);
  background: rgba(248, 0, 64, 0.1);
  border: 1px solid rgba(248, 0, 64, 0.3);
}
.pcard-badge-live {
  color: var(--cyan);
  background: rgba(0, 195, 201, 0.1);
  border: 1px solid rgba(0, 195, 201, 0.3);
}
.pcard-badge-concept {
  color: #e8734a;
  background: rgba(232, 115, 74, 0.1);
  border: 1px solid rgba(232, 115, 74, 0.3);
}

.pcard-title {
  font-family: var(--fh);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.pcard-title em {
  color: var(--red);
  font-style: normal;
}
.pcard-sub {
  font-family: var(--fs);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.pcard-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}
.pcard-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.8rem;
}
.pcard-tags li {
  font-size: 0.65rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.pcard-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--fs);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
  width: fit-content;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.pcard-link:hover {
  color: var(--red);
  border-color: transparent;
}

/* Variations */
.pcard-red:hover {
  border-color: var(--red);
}
.pcard-cyan:hover {
  border-color: var(--cyan);
}
.pcard-cyan .pcard-title em {
  color: var(--cyan);
}
.pcard-cyan .pcard-link {
  border-color: var(--cyan);
}
.pcard-cyan .pcard-link:hover {
  color: var(--cyan);
}

.pcard-gold:hover {
  border-color: #e8734a;
}
.pcard-gold .pcard-title em {
  color: #e8734a;
}
.pcard-gold .pcard-link {
  border-color: #e8734a;
}
.pcard-gold .pcard-link:hover {
  color: #e8734a;
}

.pcard-blue:hover {
  border-color: #4a90d9;
}
.pcard-blue .pcard-title em {
  color: #4a90d9;
}
.pcard-blue .pcard-link {
  border-color: #4a90d9;
}
.pcard-blue .pcard-link:hover {
  color: #4a90d9;
}

/* ── ABOUT GRID ── */
.gl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.gv {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tr {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
}
.tr1 {
  border-color: rgba(248, 0, 64, 0.2);
  animation: rs 12s linear infinite;
}
.tr2 {
  inset: 8%;
  border-color: rgba(0, 195, 201, 0.15);
  border-style: dashed;
  animation: rs 18s linear infinite reverse;
}
.tr3 {
  inset: 16%;
  border-color: rgba(248, 0, 64, 0.12);
  animation: rs 8s linear infinite;
}
@keyframes rs {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hex-logo-large {
  position: relative;
  width: 320px;
  height: 320px;
  flex-shrink: 0;
}
.hex-wrap {
  width: 100%;
  height: 100%;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--red);
  animation: hglow 4s ease-in-out infinite alternate;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes hglow {
  from {
    filter: drop-shadow(0 0 20px rgba(248, 0, 64, 0.5));
  }
  to {
    filter: drop-shadow(0 0 60px rgba(248, 0, 64, 0.9))
      drop-shadow(0 0 120px rgba(248, 0, 64, 0.3));
  }
}

.fgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.fcard {
  background: var(--bg3);
  border: 1px solid var(--br);
  border-radius: var(--r);
  padding: 2.5rem 2rem;
  position: relative;
}
.cn {
  font-family: var(--fh);
  font-size: 3.5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(248, 0, 64, 0.2);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.ct {
  font-family: var(--fs);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.8rem;
}
.cx {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── SOCIAL ── */
.social-row {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1.6rem;
  border-radius: var(--r);
  font-family: var(--fs);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: all 0.2s;
}
.social-btn svg {
  width: 16px;
  height: 16px;
}
.social-btn:hover {
  background: rgba(248, 0, 64, 0.1);
  border-color: var(--red);
  color: #fff;
  transform: translateY(-2px);
}

/* ── GLITCH DIVIDER ── */
.gl2 {
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--red) 25%,
    var(--cyan) 50%,
    var(--red) 75%,
    transparent
  );
  animation: gla 4s steps(1) infinite;
}
@keyframes gla {
  0%,
  88%,
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
  89% {
    opacity: 0.5;
    transform: scaleX(0.85) translateX(4%);
  }
  90% {
    opacity: 1;
  }
  91% {
    opacity: 0.3;
    transform: scaleX(0.9) translateX(-3%);
  }
  92% {
    opacity: 1;
  }
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--br);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: rgba(13, 15, 20, 0.85);
  backdrop-filter: blur(20px);
}
.fcopy {
  font-family: var(--fs);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.fcopy a {
  color: var(--red);
  font-weight: 600;
}
.fnav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.fnav a {
  font-family: var(--fs);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.fnav a:hover {
  color: var(--red);
}
.fnav a.hi {
  color: var(--cyan);
  font-weight: 700;
}

/* ── GLITCH BOOT ── */
#glitch-boot {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: #0d0f14;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: gb-fade 0.5s ease 2.2s forwards;
}
.gb-logo {
  position: relative;
  font-family: var(--fh);
  font-size: clamp(4rem, 15vw, 10rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  animation: gb-flash 1.8s steps(1) forwards;
}
.gb-logo::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--red);
  clip: rect(0, 900px, 0, 0);
  animation: gb-r 1.8s steps(1) forwards;
}
.gb-logo::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--cyan);
  clip: rect(0, 900px, 0, 0);
  animation: gb-c 1.8s steps(1) forwards;
}
@keyframes gb-flash {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 0.7;
    transform: skewX(-4deg);
  }
  21% {
    opacity: 1;
    transform: skewX(0);
  }
  40% {
    opacity: 0.5;
    transform: skewX(2deg) translateX(-3px);
  }
  41% {
    opacity: 1;
    transform: skewX(0) translateX(0);
  }
  100% {
    opacity: 0;
  }
}
@keyframes gb-fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* ── CUSTOM CURSOR ── */
* {
  cursor: none !important;
}
#cur-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 10px var(--red),
    0 0 20px rgba(248, 0, 64, 0.5);
}
#cur-ring {
  position: fixed;
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(248, 0, 64, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition:
    width 0.15s,
    height 0.15s,
    border-color 0.15s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .pgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gl {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  .sb {
    margin: 0 auto;
  }
}
@media (max-width: 800px) {
  .fgrid {
    grid-template-columns: 1fr;
  }
  .fstrip {
    grid-template-columns: 1fr;
  }
  .tb {
    padding: 1rem 1.5rem;
  }
  .hero {
    padding: 6rem 1rem 4rem;
  }
}
@media (max-width: 600px) {
  .pgrid {
    grid-template-columns: 1fr;
  }
  .social-row {
    flex-direction: column;
    align-items: center;
  }
  .social-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
