:root {
  --electric-blue: #0057FF;
  --hot-pink: #FF2E93;
  --acid-yellow: #E8FF00;
  --vivid-orange: #FF6B00;
  --deep-purple: #5B21B6;
  --mint-green: #00F5A0;
  --charcoal: #1A1A1A;
  --off-white: #F5F2EB;
  --cream: #FFF8E7;
  
  --block-shadow: 8px 8px 0px var(--charcoal);
  --block-shadow-sm: 4px 4px 0px var(--charcoal);
  --block-shadow-lg: 12px 12px 0px var(--charcoal);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Syne', sans-serif;
  background: var(--off-white);
  color: var(--charcoal);
  overflow-x: hidden;
  cursor: crosshair;
}

::selection {
  background: var(--hot-pink);
  color: var(--off-white);
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
  z-index: 10000;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: var(--off-white);
  border-bottom: 4px solid var(--charcoal);
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--acid-yellow);
  z-index: -1;
  transition: height 0.2s ease;
}

.logo:hover::after {
  height: 100%;
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}

.nav-links li {
  border-left: 3px solid var(--charcoal);
}

.nav-links li:last-child {
  border-right: 3px solid var(--charcoal);
}

.nav-links a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.15s ease;
}

.nav-links a:hover {
  background: var(--charcoal);
  color: var(--acid-yellow);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 8rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 4rem;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  background: var(--hot-pink);
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  border: 3px solid var(--charcoal);
  box-shadow: var(--block-shadow-sm);
  animation: slideIn 0.6s ease backwards;
}

@keyframes slideIn {
  from { 
    opacity: 0;
    transform: translateX(-30px);
  }
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 12vw, 12rem);
  line-height: 0.85;
  letter-spacing: -2px;
  margin-bottom: 2rem;
}

.hero-title .line {
  display: block;
  animation: titleReveal 0.8s ease backwards;
}

.hero-title .line:nth-child(1) { animation-delay: 0.1s; }
.hero-title .line:nth-child(2) { animation-delay: 0.2s; }

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(50px) skewY(5deg);
  }
}

.hero-title .highlight {
  position: relative;
  display: inline-block;
}

.hero-title .highlight::before {
  content: '';
  position: absolute;
  bottom: 0.1em;
  left: -0.05em;
  right: -0.05em;
  height: 0.35em;
  background: var(--acid-yellow);
  z-index: -1;
  transform: skewX(-5deg);
}

.hero-subtitle {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  max-width: 500px;
  line-height: 1.4;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s ease 0.4s backwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  animation: fadeUp 0.8s ease 0.5s backwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 4px solid var(--charcoal);
  transition: all 0.15s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--electric-blue);
  color: var(--off-white);
  box-shadow: var(--block-shadow);
}

.btn-primary:hover {
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0px var(--charcoal);
}

.btn-primary:active {
  transform: translate(8px, 8px);
  box-shadow: none;
}

.btn-secondary {
  background: var(--off-white);
  color: var(--charcoal);
  box-shadow: var(--block-shadow);
}

.btn-secondary:hover {
  background: var(--acid-yellow);
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0px var(--charcoal);
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-blocks {
  position: relative;
  width: 100%;
  height: 80%;
}

.block {
  position: absolute;
  border: 4px solid var(--charcoal);
}

.block-1 {
  width: 300px;
  height: 300px;
  background: var(--electric-blue);
  top: 10%;
  right: 20%;
  box-shadow: var(--block-shadow-lg);
  animation: blockFloat 6s ease-in-out infinite;
}

.block-2 {
  width: 200px;
  height: 200px;
  background: var(--hot-pink);
  top: 5%;
  right: 5%;
  box-shadow: var(--block-shadow);
  animation: blockFloat 6s ease-in-out 1s infinite;
}

.block-3 {
  width: 150px;
  height: 150px;
  background: var(--acid-yellow);
  bottom: 20%;
  right: 10%;
  box-shadow: var(--block-shadow);
  animation: blockFloat 6s ease-in-out 2s infinite;
}

.block-4 {
  width: 100px;
  height: 100px;
  background: var(--mint-green);
  bottom: 30%;
  right: 45%;
  box-shadow: var(--block-shadow-sm);
  animation: blockFloat 6s ease-in-out 0.5s infinite;
}

.block-5 {
  width: 80px;
  height: 80px;
  background: var(--vivid-orange);
  top: 40%;
  right: 0;
  box-shadow: var(--block-shadow-sm);
  animation: blockFloat 6s ease-in-out 1.5s infinite;
}

@keyframes blockFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-image-container {
  position: absolute;
  width: 350px;
  height: 450px;
  background: var(--cream);
  border: 4px solid var(--charcoal);
  box-shadow: var(--block-shadow-lg);
  z-index: 5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-placeholder {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  color: var(--charcoal);
  opacity: 0.4;
  text-align: center;
  padding: 2rem;
}

.marquee-container {
  background: var(--charcoal);
  border-top: 4px solid var(--charcoal);
  border-bottom: 4px solid var(--charcoal);
  padding: 1rem 0;
  overflow: hidden;
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--off-white);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.marquee-dot {
  width: 12px;
  height: 12px;
  background: var(--hot-pink);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

section {
  padding: 6rem 3rem;
  position: relative;
}

.section-header {
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  background: var(--acid-yellow);
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 3px solid var(--charcoal);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 2px;
  line-height: 1;
}

.about {
  background: var(--electric-blue);
  color: var(--off-white);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--charcoal);
}

.about .section-tag {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-content p {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-content .lead {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
}

.brand-highlight {
  background: var(--acid-yellow);
  color: var(--charcoal);
  padding: 0.1em 0.3em;
  font-weight: 700;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-block {
  background: var(--off-white);
  color: var(--charcoal);
  padding: 2rem;
  border: 4px solid var(--charcoal);
  box-shadow: var(--block-shadow);
  text-align: center;
}

.stat-block:nth-child(2) {
  background: var(--hot-pink);
  color: var(--off-white);
}

.stat-block:nth-child(3) {
  background: var(--acid-yellow);
}

.stat-block:nth-child(4) {
  background: var(--mint-green);
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.experience {
  background: var(--cream);
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.exp-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  padding: 2.5rem;
  background: var(--off-white);
  border: 4px solid var(--charcoal);
  box-shadow: var(--block-shadow);
  transition: all 0.2s ease;
}

.exp-item:hover {
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0px var(--charcoal);
}

.exp-item:nth-child(1) { border-left: 12px solid var(--electric-blue); }
.exp-item:nth-child(2) { border-left: 12px solid var(--hot-pink); }
.exp-item:nth-child(3) { border-left: 12px solid var(--vivid-orange); }
.exp-item:nth-child(4) { border-left: 12px solid var(--mint-green); }
.exp-item:nth-child(5) { border-left: 12px solid var(--deep-purple); }

.exp-date {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--charcoal);
  opacity: 0.7;
}

.exp-content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.exp-role {
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--hot-pink);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.exp-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--charcoal);
  opacity: 0.85;
}

.exp-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.brand-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  background: var(--charcoal);
  color: var(--off-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.skills {
  background: var(--off-white);
}

.skills-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.skill-block {
  padding: 2rem;
  border: 4px solid var(--charcoal);
  box-shadow: var(--block-shadow);
  transition: all 0.2s ease;
}

.skill-block:hover {
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0px var(--charcoal);
}

.skill-block:nth-child(1) { background: var(--electric-blue); color: var(--off-white); }
.skill-block:nth-child(2) { background: var(--acid-yellow); }
.skill-block:nth-child(3) { background: var(--hot-pink); color: var(--off-white); }
.skill-block:nth-child(4) { background: var(--mint-green); }

.skill-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.skill-block h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.skill-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.skill-item {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0;
  border-bottom: 2px dashed currentColor;
  opacity: 0.8;
}

.skill-item:last-child {
  border-bottom: none;
}

.contact {
  background: var(--charcoal);
  color: var(--off-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: 'LET\'S WORK';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20vw;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
}

.contact .section-tag {
  background: var(--hot-pink);
  color: var(--off-white);
}

.contact .section-title {
  margin-bottom: 1.5rem;
}

.contact-tagline {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  opacity: 0.8;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 4px solid var(--off-white);
  background: transparent;
  color: var(--off-white);
  box-shadow: 6px 6px 0px var(--off-white);
  transition: all 0.15s ease;
}

.contact-link:hover {
  background: var(--off-white);
  color: var(--charcoal);
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0px var(--off-white);
}

.contact-link svg {
  width: 20px;
  height: 20px;
}

.contact-email {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--acid-yellow);
  text-decoration: none;
  letter-spacing: 2px;
  position: relative;
  padding: 0.5rem 1rem;
  border: 4px solid var(--acid-yellow);
  transition: all 0.15s ease;
}

.contact-email:hover {
  background: var(--acid-yellow);
  color: var(--charcoal);
}

footer {
  background: var(--charcoal);
  border-top: 4px solid var(--off-white);
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  color: var(--off-white);
  opacity: 0.6;
}

.footer-back-top {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--acid-yellow);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 1.5rem;
  border: 3px solid var(--acid-yellow);
  transition: all 0.15s ease;
}

.footer-back-top:hover {
  background: var(--acid-yellow);
  color: var(--charcoal);
}

@media (max-width: 1200px) {
  .skills-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left {
    padding-right: 0;
    align-items: center;
  }

  .hero-right {
    display: none;
  }

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

  .exp-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .skills-container {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 30px;
  height: 4px;
  background: var(--charcoal);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--off-white);
    border-bottom: 4px solid var(--charcoal);
    padding: 0;
  }
  
  .nav-links.active li {
    border-left: none;
    border-right: none;
    border-bottom: 3px solid var(--charcoal);
  }
  
  .nav-links.active li:last-child {
    border-right: none;
    border-bottom: none;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .menu-toggle span {
    transition: all 0.3s ease;
  }
}
