@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Archivo+Black&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #e8e4de;
  --color-text: #000000;
  --color-text-light: #555555;
  --color-pink: #ff90e8;
  --color-yellow: #ffc900;
  --color-blue: #4d7cff;
  --color-peach: #ffb8a5;
  --color-mint: #7fffdc;
  --color-lavender: #a855f7;
  --color-green: #7fff9b;
  --color-red: #ff6b6b;
  --color-orange: #ff9f43;
  --color-border: #000000;
}

/* Noise/Grain Texture Overlay - High Resolution */
.texture-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  mix-blend-mode: multiply;
}

body {
  font-family: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

html {
  scroll-behavior: smooth;
}

/* ==================== FIXED NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  z-index: 1000;
  background: #ffffff;
  border: 3px solid var(--color-border);
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 4px 4px 0 var(--color-border);
  max-width: 700px;
  width: calc(100% - 40px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.navbar.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.navbar__logo {
  font-family: "Archivo Black", sans-serif;
  font-size: 20px;
  text-decoration: none;
  color: var(--color-text);
  letter-spacing: -1px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar__link {
  text-decoration: none;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.navbar__link:hover {
  opacity: 0.7;
}

.navbar__cta {
  background: var(--color-border);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}

.navbar__cta:hover {
  background: var(--color-text-light);
}

/* Hamburger Menu */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.navbar__hamburger span {
  width: 24px;
  height: 3px;
  background: var(--color-border);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Menu */
.navbar__mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 10px;
  background: #ffffff;
  border: 3px solid var(--color-border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 4px 4px 0 var(--color-border);
}

.navbar__mobile-menu.active {
  display: block;
}

.navbar__mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.navbar__mobile-link {
  text-decoration: none;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 600;
  display: block;
  padding: 8px 0;
}

.navbar__mobile-cta {
  display: block;
  background: var(--color-border);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .navbar__links {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .navbar {
    gap: 0;
    justify-content: space-between;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--color-yellow);
  border: 4px solid var(--color-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  font-weight: 900;
  z-index: 1000;
  box-shadow: 6px 6px 0 var(--color-border);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--color-border);
}

/* Fun Label/Tag */
.fun-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-yellow);
  border: 3px solid var(--color-border);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 3px 3px 0 var(--color-border);
}

/* ==================== NEW HERO SECTION ==================== */
.hero {
  min-height: 65vh;
  position: relative;
  overflow: hidden;
  background: #f8f7f4;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
}

/* Paper texture background */
.hero__paper-texture {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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");
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

/* Animated grid background */
.hero__grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.hero__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

/* Left Content - No container */
.hero__content {
  max-width: 600px;
  position: relative;
  z-index: 10;
}

.hero__tagline {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(48px, 6vw, 70px);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -3px;
}

.hero__tagline-highlight {
  position: relative;
  display: inline-block;
  color: #ffffff;
  padding: 5px 25px;
}

.hero__tagline-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2563eb;
  border: 4px solid var(--color-border);
  box-shadow: 6px 6px 0 var(--color-border);
  transform: skewX(-6deg);
  z-index: -1;
}

.hero__description {
  font-size: 18px;
  color: var(--color-text-light);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 480px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fbbf24;
  border: 4px solid var(--color-border);
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  box-shadow: 5px 5px 0 var(--color-border);
  transition: all 0.2s;
  cursor: pointer;
}

.hero__btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--color-border);
  background: #22c55e;
}

/* Neubrutalism Embellishments - scattered around edges */
.hero__embellish {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero__embellish--star {
  top: 8%;
  right: 12%;
  width: 45px;
  height: 45px;
  animation: float-spin 12s ease-in-out infinite;
}

.hero__embellish--star svg {
  width: 100%;
  height: 100%;
}

.hero__embellish--circle {
  bottom: 15%;
  left: 3%;
  width: 35px;
  height: 35px;
  background: var(--color-pink);
  border: 3px solid var(--color-border);
  border-radius: 50%;
  box-shadow: 3px 3px 0 var(--color-border);
  animation: float-gentle 6s ease-in-out infinite;
}

.hero__embellish--squiggle {
  bottom: 8%;
  right: 25%;
  width: 55px;
  height: 28px;
  opacity: 0.6;
  animation: float-gentle 8s ease-in-out infinite 1s;
}

.hero__embellish--squiggle svg {
  width: 100%;
  height: 100%;
}

.hero__embellish--dots {
  top: 25%;
  left: 2%;
  display: grid;
  grid-template-columns: repeat(3, 8px);
  gap: 5px;
  opacity: 0.5;
  animation: float-gentle 7s ease-in-out infinite 0.5s;
}

.hero__embellish--dots span {
  width: 8px;
  height: 8px;
  background: var(--color-border);
  border-radius: 50%;
}

.hero__embellish--cross {
  top: 70%;
  left: 5%;
  width: 28px;
  height: 28px;
  opacity: 0.5;
  animation: float-spin 15s ease-in-out infinite reverse;
}

.hero__embellish--cross::before,
.hero__embellish--cross::after {
  content: "";
  position: absolute;
  background: var(--color-border);
  border-radius: 2px;
}

.hero__embellish--cross::before {
  width: 100%;
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
}

.hero__embellish--cross::after {
  width: 6px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.hero__embellish--diamond {
  top: 12%;
  left: 4%;
  width: 22px;
  height: 22px;
  background: var(--color-mint);
  border: 3px solid var(--color-border);
  transform: rotate(45deg);
  box-shadow: 2px 2px 0 var(--color-border);
  animation: float-gentle 9s ease-in-out infinite 2s;
}

@keyframes float-gentle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes float-spin {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(10deg);
  }
}

/* Right Side - Image with colored bars */
.hero__visual {
  position: relative;
  flex-shrink: 0;
}

/* Main photo - rounded square - LARGER */
.hero__photo-frame {
  width: 400px;
  height: 440px;
  background: #fbbf24;
  border: 5px solid var(--color-border);
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  z-index: 5;
  box-shadow: 10px 10px 0 var(--color-border);
}

.hero__photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Decorative spark/lines near photo */
.hero__spark {
  position: absolute;
  top: -25px;
  left: -35px;
  font-size: 48px;
  z-index: 6;
  color: var(--color-border);
}

/* Rotating Badge */
.hero__rotating-badge {
  position: absolute;
  bottom: -25px;
  right: -25px;
  width: 130px;
  height: 130px;
  z-index: 20;
}

.hero__badge-circle {
  width: 100%;
  height: 100%;
  background: var(--color-mint);
  border: 4px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 5px 5px 0 var(--color-border);
  position: relative;
}

.hero__badge-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate-badge 15s linear infinite;
}

.hero__badge-text svg {
  width: 100%;
  height: 100%;
}

.hero__badge-text text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 700;
  fill: var(--color-border);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero__badge-inner {
  width: 55px;
  height: 55px;
  background: var(--color-bg);
  border: 3px solid var(--color-border);
  border-radius: 50%;
  z-index: 2;
}

@keyframes rotate-badge {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Horizontal colored bars - centered to image */
.hero__bars-right {
  position: absolute;
  top: 50%;
  right: -100vw;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  z-index: 3;
}

.hero__bar {
  height: 36px;
  border: 4px solid var(--color-border);
  width: 100vw;
  animation: barSlideIn 0.6s ease-out forwards;
  opacity: 0;
  transform: translateX(100%);
}

.hero__bar--red {
  background: #ef4444;
  animation-delay: 0.2s;
}
.hero__bar--blue {
  background: #2563eb;
  animation-delay: 0.4s;
}
.hero__bar--yellow {
  background: #fbbf24;
  animation-delay: 0.6s;
}

@keyframes barSlideIn {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Vertical colored bars - centered under image, very long for 4K */
.hero__bars-bottom {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 4;
}

.hero__bar-vertical {
  width: 36px;
  border: 4px solid var(--color-border);
  border-radius: 0 0 6px 6px;
  transform-origin: top center;
  animation: barSlideDown 0.8s ease-out forwards;
  opacity: 0;
}

/* Bottom bars start AFTER horizontal bars finish (0.2s + 0.6s = 0.8s) */
.hero__bar-vertical--red {
  background: #ef4444;
  height: 150vh;
  animation-delay: 1s;
}
.hero__bar-vertical--blue {
  background: #2563eb;
  height: 180vh;
  animation-delay: 1.1s;
}
.hero__bar-vertical--yellow {
  background: #fbbf24;
  height: 130vh;
  animation-delay: 1.2s;
}

@keyframes barSlideDown {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 1024px) {
  .hero {
    padding: 100px 40px 60px;
  }

  .hero__inner {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__photo-frame {
    width: 320px;
    height: 360px;
  }

  .hero__bar,
  .hero__bar-vertical {
    width: 28px;
  }

  .hero__bar {
    height: 28px;
  }

  .hero__bar-vertical--red {
    height: 120vh;
  }
  .hero__bar-vertical--blue {
    height: 150vh;
  }
  .hero__bar-vertical--yellow {
    height: 100vh;
  }

  .hero__rotating-badge {
    width: 110px;
    height: 110px;
    bottom: -20px;
    right: -20px;
  }

  .hero__badge-inner {
    width: 45px;
    height: 45px;
  }

  .hero__embellish {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 24px 40px;
    min-height: auto;
  }

  .hero__tagline {
    font-size: 40px;
    letter-spacing: -2px;
  }

  .hero__tagline-highlight {
    padding: 3px 15px;
  }

  .hero__tagline-highlight::before {
    box-shadow: 4px 4px 0 var(--color-border);
    transform: skewX(-4deg);
  }

  .hero__photo-frame {
    width: 260px;
    height: 300px;
    border-radius: 35px;
  }

  .hero__bars-right,
  .hero__bars-bottom {
    display: none;
  }

  .hero__spark {
    display: none;
  }

  .hero__rotating-badge {
    width: 90px;
    height: 90px;
    bottom: -15px;
    right: -15px;
  }

  .hero__badge-inner {
    width: 38px;
    height: 38px;
  }

  .hero__badge-text text {
    font-size: 9px;
  }
}

/* ==================== END HERO SECTION ==================== */

/* About Marquee */
.about-marquee {
  background: var(--color-border);
  padding: 20px 0;
  overflow: hidden;
  border-bottom: 4px solid var(--color-border);
}

.about-marquee__track {
  display: flex;
  width: max-content;
  animation: scroll-left 120s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.about-marquee__item {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(48px, 8vw, 100px);
  text-transform: uppercase;
  padding: 0 40px;
  white-space: nowrap;
  letter-spacing: -2px;
}

.about-marquee__item--white {
  color: #ffffff;
}
.about-marquee__item--black {
  color: var(--color-border);
  -webkit-text-stroke: 2px #ffffff;
}

/* About Section */
.about {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-wrapper {
  background: #ffffff;
}

.about__avatar {
  flex-shrink: 0;
  position: relative;
}

.about__avatar-circle {
  width: 280px;
  height: 280px;
  background: var(--color-mint);
  border: 4px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about__avatar-character {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about__avatar-head {
  width: 140px;
  height: 140px;
  background: var(--color-yellow);
  border: 4px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.about__avatar-hair {
  position: absolute;
  top: -10px;
  left: 10px;
  right: 10px;
  height: 70px;
  background: var(--color-border);
  border-radius: 70px 70px 0 0;
}

.about__avatar-face {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.about__avatar-glasses {
  display: flex;
  gap: 8px;
  align-items: center;
}

.about__avatar-lens {
  width: 40px;
  height: 40px;
  border: 4px solid var(--color-border);
  border-radius: 50%;
  background: transparent;
}

.about__avatar-bridge {
  width: 10px;
  height: 4px;
  background: var(--color-border);
}

.about__avatar-nose {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid var(--color-pink);
}

.about__avatar-beard {
  width: 80px;
  height: 50px;
  background: var(--color-border);
  border-radius: 0 0 40px 40px;
  position: relative;
  margin-top: -5px;
}

.about__avatar-mouth {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 15px;
  background: #fff;
  border-radius: 0 0 30px 30px;
}

.about__avatar-body {
  width: 100px;
  height: 60px;
  background: var(--color-blue);
  border: 4px solid var(--color-border);
  border-radius: 0 0 20px 20px;
  margin-top: -20px;
}

.about__avatar-headphones {
  position: absolute;
  top: 50px;
  width: 160px;
  height: 100px;
}

.about__avatar-headphone {
  position: absolute;
  width: 35px;
  height: 45px;
  background: var(--color-yellow);
  border: 4px solid var(--color-border);
  border-radius: 10px;
  top: 25px;
}

.about__avatar-headphone--left {
  left: 0;
}
.about__avatar-headphone--right {
  right: 0;
}

.about__speech {
  flex: 1;
  position: relative;
}

.about__speech-bubble {
  background: #fff;
  border: 4px solid var(--color-border);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  box-shadow: 6px 6px 0 var(--color-border);
}

.about__speech-bubble::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 30px solid var(--color-border);
}

.about__speech-bubble::after {
  content: "";
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-right: 26px solid #fff;
}

.about__speech-title {
  font-family: "Archivo Black", sans-serif;
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about__speech-text {
  font-size: 16px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about__links {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.about__link {
  background: #fff;
  border: 3px solid var(--color-border);
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 3px 3px 0 var(--color-border);
}

.about__link:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--color-border);
}

.about__link:nth-child(1) {
  background: var(--color-pink);
}
.about__link:nth-child(2) {
  background: var(--color-blue);
  color: #fff;
}
.about__link:nth-child(3) {
  background: var(--color-mint);
}
.about__link:nth-child(4) {
  background: var(--color-peach);
}

/* Work Marquee Section */
.marquee-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: #ffffff;
}

.marquee-wrapper {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee {
  position: absolute;
  width: 200%;
  left: -50%;
  display: flex;
  align-items: center;
  height: 70px;
  background: var(--color-yellow);
  border-top: 4px solid var(--color-border);
  border-bottom: 4px solid var(--color-border);
  overflow: hidden;
}

.marquee--top {
  transform: rotate(-3deg);
  top: 20px;
}

.marquee--bottom {
  transform: rotate(3deg);
  bottom: 20px;
}

.marquee__track {
  display: flex;
  animation: marquee-scroll 25s linear infinite;
  width: max-content;
}

.marquee--bottom .marquee__track {
  animation: marquee-scroll-reverse 25s linear infinite;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-scroll-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.marquee__item {
  font-family: "Archivo Black", sans-serif;
  font-size: 36px;
  text-transform: uppercase;
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
}

.marquee__item::after {
  content: "✦";
  font-size: 24px;
}

/* Timeline Section */
.timeline {
  padding: 100px 48px 120px;
  background: #f8f7f4;
  position: relative;
  overflow: hidden;
}

/* Timeline paper texture */
.timeline__paper-texture {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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");
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

/* Timeline grid */
.timeline__grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
  animation: gridPulse 8s ease-in-out infinite;
}

.timeline__header {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.timeline__title {
  font-family: "Archivo Black", sans-serif;
  font-size: 72px;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -3px;
}

.timeline__subtitle {
  font-size: 18px;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.timeline__container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline__line-svg {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 100%;
  z-index: 1;
  overflow: visible;
}

.timeline__line-path {
  stroke: var(--color-border);
  stroke-width: 6;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 0.05s linear;
}

.timeline__items {
  position: relative;
  z-index: 2;
}

.timeline__item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 20px;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline__item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline__item:nth-child(odd) .timeline__card {
  grid-column: 1;
}
.timeline__item:nth-child(odd) .timeline__date-container {
  grid-column: 3;
  justify-self: start;
}
.timeline__item:nth-child(even) .timeline__card {
  grid-column: 3;
}
.timeline__item:nth-child(even) .timeline__date-container {
  grid-column: 1;
  justify-self: end;
  text-align: right;
}

.timeline__dot-container {
  grid-column: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 30px;
}

.timeline__dot {
  width: 32px;
  height: 32px;
  background: var(--color-yellow);
  border-radius: 50%;
  border: 5px solid var(--color-border);
  z-index: 10;
  transition: all 0.3s;
  box-shadow: 0 0 0 6px #f5f5f5;
}

.timeline__item.visible .timeline__dot {
  animation: dot-pop 0.5s ease-out;
}

@keyframes dot-pop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

.timeline__item:hover .timeline__dot {
  transform: scale(1.2);
  background: var(--color-pink);
}

.timeline__date-container {
  padding-top: 30px;
}

.timeline__date {
  display: inline-block;
  background: var(--color-yellow);
  border: 3px solid var(--color-border);
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 3px 3px 0 var(--color-border);
}

.timeline__card {
  background: #fff;
  border: 4px solid var(--color-border);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 6px 6px 0 var(--color-border);
}

.timeline__card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 var(--color-border);
}

.timeline__item:nth-child(1) .timeline__card {
  background: #fff;
}
.timeline__item:nth-child(2) .timeline__card {
  background: var(--color-mint);
}
.timeline__item:nth-child(3) .timeline__card {
  background: var(--color-blue);
  color: #fff;
}
.timeline__item:nth-child(3) .timeline__card-text {
  color: rgba(255, 255, 255, 0.8);
}
.timeline__item:nth-child(4) .timeline__card {
  background: var(--color-peach);
}

.timeline__card-title {
  font-family: "Archivo Black", sans-serif;
  font-size: 22px;
  margin-bottom: 8px;
}

.timeline__card-subtitle {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0.8;
}

.timeline__card-text {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 15px;
}

.timeline__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.timeline__skill {
  background: rgba(0, 0, 0, 0.08);
  border: 3px solid var(--color-border);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

/* CTA Section */
.cta {
  padding: 160px 48px;
  text-align: center;
  background: var(--color-pink);
  position: relative;
  overflow: hidden;
}

.cta__content {
  position: relative;
  z-index: 2;
}

.cta__title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(48px, 8vw, 88px);
  line-height: 1.05;
  margin-bottom: 40px;
  letter-spacing: -3px;
}

.cta__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-yellow);
  color: var(--color-text);
  border: 4px solid var(--color-border);
  padding: 24px 48px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 900;
  transition: all 0.2s;
  box-shadow: 6px 6px 0 var(--color-border);
}

.cta__button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--color-border);
  background: #fff;
}

/* ==================== SKILLS SECTION ==================== */
.skills {
  padding: 100px 48px;
  background: #ffffff;
  position: relative;
}

.skills__header {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.skills__title {
  font-family: "Archivo Black", sans-serif;
  font-size: 56px;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.skills__subtitle {
  font-size: 18px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.skills__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.skills__item {
  background: #f8f7f4;
  border: 3px solid var(--color-border);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 4px 4px 0 var(--color-border);
  cursor: default;
  width: 140px;
  flex-shrink: 0;
}

.skills__item:hover {
  transform: translate(-4px, -4px) rotate(-2deg);
  box-shadow: 8px 8px 0 var(--color-border);
}

.skills__item:nth-child(1) {
  background: var(--color-yellow);
}
.skills__item:nth-child(2) {
  background: var(--color-mint);
}
.skills__item:nth-child(3) {
  background: var(--color-pink);
}
.skills__item:nth-child(4) {
  background: var(--color-peach);
}
.skills__item:nth-child(5) {
  background: var(--color-blue);
  color: #fff;
}
.skills__item:nth-child(6) {
  background: var(--color-green);
}
.skills__item:nth-child(7) {
  background: #f8f7f4;
}
.skills__item:nth-child(8) {
  background: var(--color-lavender);
  color: #fff;
}

.skills__icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
}

.skills__name {
  font-weight: 700;
  font-size: 14px;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
  padding: 100px 48px;
  background: var(--color-pink);
  position: relative;
  overflow: hidden;
}

.contact__container--centered {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact__info--centered {
  text-align: center;
}

.contact__title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.contact__description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: var(--color-text);
}

.contact__email-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-yellow);
  border: 4px solid var(--color-border);
  padding: 18px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  box-shadow: 6px 6px 0 var(--color-border);
  transition: all 0.2s;
}

.contact__email-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--color-border);
  background: #fff;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--color-border);
  color: #ffffff;
  padding: 40px 48px;
}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__simple {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__logo {
  font-family: "Archivo Black", sans-serif;
  font-size: 24px;
  letter-spacing: -1px;
}

.footer__contact-info {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.footer__contact-info .footer__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__contact-info .footer__link:hover {
  color: var(--color-yellow);
}

.footer__divider {
  color: rgba(255, 255, 255, 0.4);
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 24px;
  }

  .footer__simple {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer__contact-info {
    flex-direction: column;
    gap: 8px;
  }

  .footer__divider {
    display: none;
  }
}

/* ==================== SCROLL ANIMATIONS ==================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children animation */
.stagger-children .fade-in-up:nth-child(1) {
  transition-delay: 0.1s;
}
.stagger-children .fade-in-up:nth-child(2) {
  transition-delay: 0.2s;
}
.stagger-children .fade-in-up:nth-child(3) {
  transition-delay: 0.3s;
}
.stagger-children .fade-in-up:nth-child(4) {
  transition-delay: 0.4s;
}
.stagger-children .fade-in-up:nth-child(5) {
  transition-delay: 0.5s;
}
.stagger-children .fade-in-up:nth-child(6) {
  transition-delay: 0.6s;
}
.stagger-children .fade-in-up:nth-child(7) {
  transition-delay: 0.7s;
}
.stagger-children .fade-in-up:nth-child(8) {
  transition-delay: 0.8s;
}

/* Responsive */
@media (max-width: 1024px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about__speech-bubble::before,
  .about__speech-bubble::after {
    display: none;
  }

  .timeline__item {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .timeline__item:nth-child(odd) .timeline__card,
  .timeline__item:nth-child(even) .timeline__card {
    grid-column: 1;
  }

  .timeline__item:nth-child(odd) .timeline__date-container,
  .timeline__item:nth-child(even) .timeline__date-container {
    grid-column: 1;
    justify-self: start;
    text-align: left;
  }

  .timeline__dot-container,
  .timeline__line-svg {
    display: none;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
    font-size: 20px;
  }

  .about {
    padding: 60px 24px;
  }

  .about__avatar-circle {
    width: 200px;
    height: 200px;
  }

  .about__avatar-head {
    width: 100px;
    height: 100px;
  }

  .about__avatar-hair {
    height: 50px;
  }
  .about__avatar-lens {
    width: 30px;
    height: 30px;
  }
  .about__avatar-beard {
    width: 60px;
    height: 40px;
  }

  .about__speech-title {
    font-size: 22px;
  }

  .timeline {
    padding: 60px 24px 80px;
  }

  .timeline__title {
    font-size: 40px;
  }

  .marquee__item {
    font-size: 24px;
    padding: 0 20px;
    gap: 20px;
  }

  .marquee {
    height: 50px;
  }

  .cta {
    padding: 100px 24px;
  }

  .cta__title {
    font-size: 40px;
  }

  .skills {
    padding: 60px 24px;
  }

  .skills__title {
    font-size: 36px;
  }

  .skills__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .contact {
    padding: 60px 24px;
  }

  .contact__title {
    font-size: 32px;
  }

  .contact__email-btn {
    font-size: 16px;
    padding: 16px 28px;
  }
}
