@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@600;700;800;900&family=Inter:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0a0a0a;
  color: #f2f2ee;
  line-height: 1.6;
  padding-top: 80px;
  cursor: none;
  overflow-x: hidden;
}

a, button, .carousel-item, .logo-item {
  cursor: none;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #c8ff4d;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
  will-change: transform;
}

.cursor-dot.is-hovering {
  width: 40px;
  height: 40px;
  background: rgba(200, 255, 77, 0.3);
  border: 2px solid #c8ff4d;
}

@media (hover: none), (pointer: coarse) {
  body, a, button, .carousel-item, .logo-item {
    cursor: auto;
  }
  .cursor-dot {
    display: none;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

header.scrolled {
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #f2f2ee;
  font-weight: 500;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s ease;
}

nav a:not(.btn-nav):hover {
  color: #c8ff4d;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo img {
  display: block;
  height: 40px;
  width: auto;
}

.logo span {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f2f2ee;
}

.btn-nav {
  background: #c8ff4d;
  color: #0a0a0a !important;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn-nav:hover {
  transform: scale(1.05);
}

.hero {
  max-width: 1200px;
  margin: 5rem auto 3rem;
  padding: 0 2rem;
}

.hero h1 {
  font-family: 'Bebas Neue', 'Outfit', sans-serif;
  font-size: clamp(4rem, 13vw, 11rem);
  font-weight: 400;
  line-height: 0.92;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
  color: #f2f2ee;
}

.hero p {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  color: #999;
  max-width: 500px;
  font-weight: 400;
}

.ticker-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  height: 54px;
  margin: 2rem 0;
  display: flex;
  align-items: center;
}

.ticker {
  width: 120%;
  margin-left: -10%;
  background: #c8ff4d;
  padding: 1.6rem 0;
  transform: rotate(-1deg);
}

.ticker.reverse {
  background: #1a1a1a;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transform: rotate(1deg);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  animation: ticker-scroll 22s linear infinite;
}

.ticker.reverse .ticker-track {
  animation-direction: reverse;
  animation-duration: 26s;
}

.ticker-track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #0a0a0a;
  white-space: nowrap;
}

.ticker.reverse .ticker-track span {
  color: #c8ff4d;
}

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

.carousel-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.carousel-container {
  background: #151515;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 32px;
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  box-shadow: 0 4px 40px rgba(0,0,0,0.3);
}

.carousel-box {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 250px;
}

.carousel-wrapper {
  perspective: 600px;
  width: 100%;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-track {
  width: 120px;
  height: 160px;
  position: relative;
  transform-style: preserve-3d;
}

.carousel-item {
  position: absolute;
  width: 120px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, filter;
  opacity: 1 !important;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.12));
  pointer-events: none;
  user-drag: none;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.carousel-text {
  position: relative;
  z-index: 2;
  flex: 1;
}

.carousel-text .tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8ff4d;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.carousel-text h2 {
  font-family: 'Bebas Neue', 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  color: #f2f2ee;
}

.carousel-text p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #999;
  line-height: 1.6;
  max-width: 400px;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.text-accent {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.text-accent span {
  display: block;
  width: 40px;
  height: 2px;
  background: #c8ff4d;
}

.text-accent p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #999;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin: 0;
  text-transform: uppercase;
}

.featured-section {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.featured-header-section {
  max-width: 1200px;
  margin: 5rem auto 3rem;
  padding: 0 2rem;
}

.featured-header {
  margin-bottom: 0;
}

.featured-header .tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8ff4d;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.featured-header h2 {
  font-family: 'Bebas Neue', 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  color: #f2f2ee;
}

.featured-header p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #999;
  max-width: 500px;
}

.featured-grid-overlay {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
}

.project-card-overlay {
  text-decoration: none;
  color: #f2f2ee;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card-overlay:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.large {
  grid-row: span 2;
}

.medium {
  grid-row: span 1;
}

.small {
  grid-row: span 1;
}

.project-image-overlay {
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #151515;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.large .project-image-overlay {
  min-height: 520px;
}

#brandCard .project-image-overlay {
  background: #1a1a1a;
}

#brandCard .project-image-overlay::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 26%;
  background: linear-gradient(to bottom, rgba(26,26,26,0) 0%, rgba(26,26,26,0.6) 35%, rgba(26,26,26,0.98) 100%);
  z-index: 2;
  pointer-events: none;
}

.medium .project-image-overlay {
  min-height: 260px;
}

.small .project-image-overlay {
  min-height: 240px;
}

.logo-wall {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.logo-lane {
  position: absolute;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 5rem;
  width: max-content;
  will-change: transform;
}

.logo-item {
  flex-shrink: 0;
  width: clamp(320px, 55vw, 880px);
  height: clamp(120px, 18vw, 260px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  filter: none;
}

.project-content {
  position: relative;
  z-index: 10;
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.project-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f2f2ee;
  opacity: 0.5;
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}

.brand-title {
  font-family: 'Bebas Neue', 'Outfit', sans-serif;
  font-size: 5.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #f2f2ee;
  text-shadow: none;
  display: inline-block;
}

#brandCard .project-content {
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
  padding: 1.1rem 1.4rem;
  z-index: 10;
}

#brandCard .project-label {
  color: #fff;
  opacity: 0.65;
}

#brandCard .brand-title,
#brandCard .spotlight-text {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

#brandCard .spotlight-text::before {
  color: #c8ff4d;
  -webkit-text-fill-color: #c8ff4d;
}

.project-content h3 {
  font-family: 'Bebas Neue', 'Outfit', sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #f2f2ee;
  text-shadow: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.medium .project-content h3 {
  font-size: 4.5rem;
}

.small .project-content h3 {
  font-size: 3.5rem;
}

.spotlight-container .brand-title,
.spotlight-text {
  color: #f2f2ee;
  -webkit-text-fill-color: #f2f2ee;
  transition: all 0.1s ease;
  position: relative;
  display: inline-block;
}

.spotlight-container .brand-title::before,
.spotlight-text::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #c8ff4d;
  -webkit-text-fill-color: #c8ff4d;
  clip-path: circle(0px at 0px 0px);
  transition: none;
  pointer-events: none;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.spotlight-container:hover .brand-title::before,
.spotlight-container:hover .spotlight-text::before {
  clip-path: circle(var(--spotlight-size, 80px) at var(--mouse-x, 50%) var(--mouse-y, 50%));
}

.trail-symbol {
  position: fixed;
  pointer-events: none;
  font-size: 20px;
  z-index: 99999;
  font-family: 'Arial', sans-serif;
  will-change: transform, opacity;
  color: white;
  text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

footer {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #999;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: #f2f2ee;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  #nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  #nav-menu.open {
    display: flex;
  }

  #nav-menu li {
    display: block !important;
  }

  #nav-menu a {
    font-size: 1.2rem;
  }

  .btn-nav {
    display: inline-block;
  }

  body {
    padding-top: 70px;
  }

  header {
    padding: 0.8rem 1.5rem;
  }

  .logo img {
    height: 32px;
  }

  .logo span {
    font-size: 1.1rem;
  }

  nav ul {
    gap: 1rem;
  }

  .hero {
    margin: 2.5rem auto 1.5rem;
    padding: 0 1.5rem;
  }

  .ticker-track span {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .carousel-section {
    padding: 0 1.5rem;
    margin: 2.5rem auto;
  }

  .carousel-container {
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 2rem;
    border-radius: 24px;
  }

  .carousel-box {
    min-height: 200px;
    width: 100%;
  }

  .carousel-wrapper {
    height: 180px;
  }

  .carousel-track {
    width: 100px;
    height: 130px;
  }

  .carousel-item {
    width: 100px;
    height: 130px;
  }

  .carousel-text {
    width: 100%;
    text-align: center;
  }

  .carousel-text h2 {
    font-size: 1.8rem;
  }

  .carousel-text p {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .text-accent {
    justify-content: center;
  }

  .featured-section {
    padding: 0 1.5rem;
    margin: 3rem auto;
  }

  .featured-header h2 {
    font-size: 2.2rem;
  }

  .featured-header p {
    font-size: 1rem;
  }

  .featured-grid-overlay {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .large {
    grid-row: span 1;
  }

  .project-image-overlay {
    min-height: 200px !important;
    padding: 1.5rem;
  }

  .large .project-image-overlay {
    min-height: 280px !important;
  }

  .medium .project-image-overlay {
    min-height: 200px !important;
  }

  .small .project-image-overlay {
    min-height: 180px !important;
  }

  .brand-title {
    font-size: 4.5rem;
  }

  .medium .project-content h3 {
    font-size: 3rem;
  }

  .small .project-content h3 {
    font-size: 2.5rem;
  }

  .project-label {
    font-size: 0.6rem;
  }

  .logo-item {
    width: clamp(220px, 60vw, 420px);
    height: clamp(80px, 22vw, 140px);
  }

  .logo-track {
    gap: 2.5rem;
  }

  footer {
    padding: 2rem 1.5rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 0.6rem 1rem;
  }

  .logo span {
    font-size: 0.95rem;
  }

  .logo img {
    height: 28px;
  }

  .btn-nav {
    padding: 0.3rem 1rem;
    font-size: 0.75rem;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .carousel-container {
    padding: 1.5rem 1rem;
  }

  .carousel-text h2 {
    font-size: 1.4rem;
  }

  .carousel-text p {
    font-size: 0.85rem;
  }

  .featured-header h2 {
    font-size: 1.8rem;
  }

  .brand-title {
    font-size: 3.5rem;
  }

  .medium .project-content h3 {
    font-size: 2.5rem;
  }

  .small .project-content h3 {
    font-size: 2rem;
  }

  .large .project-image-overlay {
    min-height: 220px !important;
  }

  .logo-item {
    width: clamp(160px, 65vw, 300px);
    height: clamp(60px, 24vw, 100px);
  }

  .logo-track {
    gap: 1.5rem;
  }
}