:root {
  --ink: #050505;
  --paper: #ededeb;
  --muted: #9a9a93;
  --line: rgba(237, 237, 235, 0.18);
  --acid: #b7ff19;
  --violet: #8c52ff;
  --font-geist-sans: "Inter", Arial, sans-serif;
  --font-geist-mono: "Geist Mono", "Courier New", monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--ink);
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-geist-sans), Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
::selection {
  background: var(--acid);
  color: #000;
}
.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.045;
  pointer-events: none;
  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='.8'/%3E%3C/svg%3E");
}
.scanline {
  position: fixed;
  z-index: 49;
  pointer-events: none;
  left: 0;
  right: 0;
  height: 80px;
  top: -80px;
  opacity: 0.06;
  background: linear-gradient(transparent, var(--acid), transparent);
  animation: scan 9s linear infinite;
}
@keyframes scan {
  to {
    transform: translateY(calc(100vh + 160px));
  }
}
.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font: 700 14px/1 var(--font-geist-mono);
  letter-spacing: -0.04em;
}
.brand em {
  color: var(--acid);
  font-style: normal;
}
.brand-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--acid);
  color: var(--acid);
  transform: rotate(-5deg);
  clip-path: polygon(0 10%, 88% 0, 100% 78%, 14% 100%);
}
.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav a {
  position: relative;
  font: 600 11px/1 var(--font-geist-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--acid);
  transition: right 0.25s;
}
.nav a:hover {
  color: var(--acid);
}
.nav a:hover::after {
  right: 0;
}
.nav a span {
  color: #686862;
  margin-right: 4px;
}
.nav-cta {
  border: 1px solid var(--line);
  padding: 12px 15px;
}
.nav-cta span {
  color: var(--acid) !important;
  margin-left: 8px;
}
.status {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  font: 500 9px/1 var(--font-geist-mono);
  color: var(--muted);
  letter-spacing: 0.12em;
}
.status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 10px var(--acid);
  animation: blink 1.4s steps(2) infinite;
}
.status span {
  color: #555;
  margin-left: 6px;
}
@keyframes blink {
  50% {
    opacity: 0.2;
  }
}
.menu-toggle {
  display: none;
}
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 135px 7vw 85px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}
.hero-meta {
  position: absolute;
  top: 112px;
  left: 7vw;
  right: 7vw;
  display: flex;
  justify-content: space-between;
  color: #6f6f69;
  font: 500 9px/1 var(--font-geist-mono);
  letter-spacing: 0.16em;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(900px, 68vw);
}
.kicker,
.eyebrow {
  color: var(--acid);
  font: 600 10px/1.4 var(--font-geist-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.glitch {
  position: relative;
  margin: 22px 0 30px;
  font-size: clamp(4.2rem, 8.8vw, 9.2rem);
  line-height: 0.78;
  letter-spacing: -0.09em;
  font-weight: 800;
  text-transform: uppercase;
}
.glitch span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(237, 237, 235, 0.65);
}
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--acid);
  clip-path: inset(48% 0 43% 0);
  transform: translateX(4px);
  opacity: 0.5;
  animation: glitch 4s steps(1) infinite;
  pointer-events: none;
}
@keyframes glitch {
  0%,
  92%,
  100% {
    transform: translateX(4px);
  }
  93% {
    transform: translateX(-8px);
  }
  95% {
    transform: translateX(12px);
  }
  97% {
    transform: translateX(0);
  }
}
.intro {
  width: min(570px, 90%);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: #b5b5af;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 36px;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding: 17px 22px;
  border: 1px solid var(--acid);
  font: 700 10px/1 var(--font-geist-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.2s ease;
}
.button.primary {
  background: var(--acid);
  color: #050505;
  box-shadow: 7px 7px 0 rgba(183, 255, 25, 0.17);
}
.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 rgba(183, 255, 25, 0.22);
}
.text-link {
  font: 600 10px/1 var(--font-geist-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid #555;
  padding: 8px 0;
}
.text-link span {
  color: var(--acid);
  margin-left: 9px;
}
.eye-system {
  position: absolute;
  z-index: 1;
  right: -3vw;
  top: 50%;
  width: clamp(330px, 41vw, 650px);
  aspect-ratio: 1;
  transform: translateY(-48%);
}
.orbit {
  position: absolute;
  inset: 10%;
  border: 1px dashed rgba(183, 255, 25, 0.27);
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}
.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--acid);
  border-radius: 50%;
}
.orbit::before {
  top: 13%;
  left: 13%;
}
.orbit::after {
  bottom: 8%;
  right: 19%;
}
.orbit-two {
  inset: 23%;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.12);
  animation-direction: reverse;
  animation-duration: 18s;
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
.eye-shell {
  position: absolute;
  inset: 24% 9%;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 24px rgba(183, 255, 25, 0.13));
}
.eye {
  width: 100%;
  height: 48%;
  display: grid;
  place-items: center;
  border: 2px solid rgba(237, 237, 235, 0.9);
  border-radius: 100% 0 100% 0;
  transform: rotate(45deg);
  background: radial-gradient(
    circle at center,
    rgba(183, 255, 25, 0.08),
    transparent 60%
  );
}
.iris {
  width: 42%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px double var(--acid);
  display: grid;
  place-items: center;
  transform: rotate(-45deg);
  box-shadow:
    0 0 30px rgba(183, 255, 25, 0.22),
    inset 0 0 22px rgba(183, 255, 25, 0.25);
}
.pupil {
  width: 35%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 16px #fff;
}
.label {
  position: absolute;
  color: var(--acid);
  font: 500 8px/1 var(--font-geist-mono);
  letter-spacing: 0.15em;
  padding: 7px;
  border-left: 1px solid var(--acid);
}
.label-a {
  top: 17%;
  right: 13%;
}
.label-b {
  bottom: 15%;
  left: 10%;
}
.crosshair {
  position: absolute;
  color: #555;
  font: 300 24px/1 var(--font-geist-mono);
}
.cross-a {
  top: 4%;
  left: 45%;
}
.cross-b {
  bottom: 4%;
  right: 34%;
}
.ticker {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--acid);
  color: #050505;
  white-space: nowrap;
}
.ticker div {
  width: max-content;
  padding: 9px 0;
  font: 800 10px/1 var(--font-geist-mono);
  letter-spacing: 0.19em;
  animation: ticker 24s linear infinite;
}
.ticker span {
  padding: 0 24px;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
.section {
  padding: 120px 7vw;
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: end;
  gap: 40px;
  margin-bottom: 60px;
}
.section h2,
.about h2 {
  margin: 17px 0 0;
  font-size: clamp(3rem, 6.2vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}
.section h2 span,
.about h2 span {
  color: transparent;
  -webkit-text-stroke: 1px #6d6d67;
}
.section-note {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.project-card {
  grid-column: span 4;
  border: 1px solid var(--line);
  background: #0b0b0b;
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--acid);
}
.project-visual {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: radial-gradient(
    circle at 50% 42%,
    #232323 0,
    #0d0d0d 45%,
    #050505 75%
  );
}
.project-card.violet .project-visual {
  background: radial-gradient(
    circle at 50% 40%,
    rgba(140, 82, 255, 0.5),
    #171021 38%,
    #050505 75%
  );
}
.project-card.white .project-visual {
  background: repeating-linear-gradient(
    135deg,
    #e5e5e0 0 2px,
    #050505 2px 15px
  );
}
.project-index,
.project-arrow {
  position: absolute;
  top: 18px;
  font: 600 9px/1 var(--font-geist-mono);
  z-index: 2;
}
.project-index {
  left: 18px;
  color: var(--acid);
}
.project-arrow {
  right: 18px;
  font-size: 20px;
}
.signal-rings {
  position: absolute;
  width: 240px;
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.signal-rings i {
  position: absolute;
  inset: 0;
  border: 1px solid var(--acid);
  border-radius: 50%;
}
.signal-rings i:nth-child(2) {
  inset: 20%;
  border-style: dashed;
  animation: rotate 12s linear infinite;
}
.signal-rings i:nth-child(3) {
  inset: 39%;
  background: var(--acid);
  box-shadow: 0 0 35px var(--acid);
}
.violet .signal-rings {
  transform: translate(-50%, -50%) skew(-10deg);
}
.violet .signal-rings i {
  border-color: #d9c7ff;
  border-radius: 0;
}
.violet .signal-rings i:nth-child(3) {
  background: #d9c7ff;
  box-shadow: 0 0 35px var(--violet);
}
.white .signal-rings {
  background: #050505;
}
.white .signal-rings i {
  border-color: #fff;
}
.white .signal-rings i:nth-child(3) {
  background: #fff;
  box-shadow: none;
}
.project-info {
  padding: 22px;
}
.project-info p {
  margin: 0 0 10px;
  color: var(--acid);
  font: 600 9px/1 var(--font-geist-mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.project-info h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}
.project-info > span {
  color: var(--muted);
  font-size: 0.9rem;
}
.project-info ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin: 22px 0 0;
}
.project-info li {
  border: 1px solid #30302d;
  padding: 6px 8px;
  color: #85857f;
  font: 500 7px/1 var(--font-geist-mono);
  letter-spacing: 0.1em;
}
.about {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) 1.25fr;
  gap: 8vw;
  align-items: center;
  border-top: 1px solid var(--line);
  background: #090909;
}
.about-code {
  font: 500 8px/1 var(--font-geist-mono);
  letter-spacing: 0.16em;
  color: var(--acid);
}
.about-code p {
  display: flex;
  justify-content: space-between;
}
.portrait-placeholder {
  min-height: 520px;
  display: grid;
  place-items: center;
  margin: 12px 0;
  border: 1px solid #2a2a27;
  color: #6f6f69;
  background:
    linear-gradient(160deg, transparent 60%, rgba(183, 255, 25, 0.12)),
    repeating-linear-gradient(
      0deg,
      transparent 0 7px,
      rgba(255, 255, 255, 0.025) 7px 8px
    );
  clip-path: polygon(4% 0, 100% 0, 100% 94%, 94% 100%, 0 100%, 0 5%);
}
.portrait-placeholder span {
  font: 800 4rem/0.8 var(--font-geist-sans);
  letter-spacing: -0.09em;
  text-align: center;
  transform: rotate(-6deg);
}
.about-copy > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.7;
}
.about-copy .about-lead {
  color: var(--paper) !important;
  font-size: 1.28rem;
}
.capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}
.capabilities span {
  border: 1px solid #393935;
  padding: 10px 12px;
  font: 600 8px/1 var(--font-geist-mono);
  letter-spacing: 0.12em;
}
.manifesto {
  padding: 140px 7vw;
  text-align: center;
  background: var(--acid);
  color: #050505;
}
.manifesto > p {
  font: 600 10px/1 var(--font-geist-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.manifesto h2 {
  margin: 32px 0 50px;
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.74;
  letter-spacing: -0.09em;
}
.manifesto h2 span {
  color: transparent;
  -webkit-text-stroke: 2px #050505;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0, 0, 0, 0.35);
}
.manifesto-grid span {
  padding-top: 20px;
  font: 700 9px/1 var(--font-geist-mono);
  letter-spacing: 0.16em;
}
footer {
  padding: 110px 7vw 32px;
}
.footer-top h2 {
  max-width: 1000px;
  margin: 24px 0 48px;
  font-size: clamp(4rem, 8vw, 8.5rem);
  line-height: 0.78;
  letter-spacing: -0.09em;
}
.footer-top h2 span {
  color: var(--acid);
}
.button.large {
  font-size: 12px;
  padding: 22px 27px;
}
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 30px;
  margin-top: 120px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.footer-bottom p,
.footer-bottom a {
  font: 600 8px/1 var(--font-geist-mono);
  letter-spacing: 0.12em;
  color: #777771;
}
.footer-bottom .brand {
  color: var(--paper);
  font-size: 12px;
}
.footer-bottom .brand-mark {
  color: var(--acid);
}
.footer-bottom div {
  justify-self: end;
  display: flex;
  gap: 22px;
}
.footer-bottom div a:hover {
  color: var(--acid);
}
@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 22px;
  }
  .status {
    display: none;
  }
  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 45;
    width: 42px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    background: transparent;
    border: 1px solid var(--line);
    padding: 11px;
  }
  .menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--paper);
    transition: 0.2s;
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .nav {
    inset: 0;
    z-index: 44;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    padding: 80px 10vw;
    background: #050505;
    transform: translateY(-105%);
    transition: transform 0.35s cubic-bezier(0.7, 0, 0.2, 1);
  }
  .nav.open {
    transform: translateY(0);
  }
  .nav a {
    font-size: 1.5rem;
  }
  .nav a span {
    font-size: 10px;
  }
  .nav-cta {
    margin-top: 120px;
  }
  .hero {
    align-items: flex-end;
    padding: 150px 24px 100px;
    min-height: 900px;
  }
  .hero-meta {
    left: 24px;
    right: 24px;
  }
  .hero-copy {
    width: 100%;
  }
  .eye-system {
    width: 520px;
    max-width: 115vw;
    right: -22vw;
    top: 38%;
    opacity: 0.72;
  }
  .glitch {
    font-size: clamp(3.6rem, 16vw, 7rem);
  }
  .intro {
    width: 100%;
  }
  .section {
    padding: 90px 24px;
  }
  .section-head {
    grid-template-columns: 1fr;
  }
  .project-card {
    grid-column: span 12;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .project-visual {
    height: 320px;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .portrait-placeholder {
    min-height: 420px;
  }
  .manifesto {
    padding: 100px 24px;
  }
  footer {
    padding: 90px 24px 28px;
  }
}
@media (max-width: 580px) {
  .hero-meta span:last-child {
    display: none;
  }
  .glitch {
    line-height: 0.84;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .project-card {
    display: block;
  }
  .project-visual {
    height: 290px;
  }
  .section h2,
  .about h2 {
    font-size: 3.2rem;
  }
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .manifesto-grid span {
    border-top: 1px solid rgba(0, 0, 0, 0.25);
  }
  .footer-bottom {
    grid-template-columns: 1fr;
  }
  .footer-bottom div {
    justify-self: start;
    flex-wrap: wrap;
  }
}

.project-img-one{
  height: 100%;
  width: 100%;
}

.portpic{
    width: 100%;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
