/* ============================================
   VØID — Clothing Brand
   Noir Editorial × Acid Neon
   ============================================ */

/* --- VARIABLES --- */
:root {
  --black:      #0A0A0A;
  --black-2:    #111111;
  --black-3:    #1A1A1A;
  --charcoal:   #2A2A2A;
  --grey:       #555555;
  --grey-light: #888888;
  --off-white:  #E8E4DF;
  --white:      #F5F5F5;
  --lime:       #CCFF00;
  --lime-dim:   #A8D400;

  --font-display: 'Syne', sans-serif;
  --font-body:    'Instrument Serif', serif;

  --nav-h: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.87, 0, 0.13, 1);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* --- CUSTOM CURSOR --- */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(204, 255, 0, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease-out), width 0.3s, height 0.3s, border-color 0.3s;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 14px; height: 14px; }
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  width: 56px; height: 56px;
  border-color: rgba(204, 255, 0, 0.7);
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--charcoal); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--lime); }

/* --- REVEAL ANIMATION --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }
.reveal[data-delay="5"] { transition-delay: 0.5s; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--lime);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-out);
  z-index: -1;
}
.btn:hover::after { transform: translateX(0); }
.btn--primary {
  background: var(--lime);
  color: var(--black);
}
.btn--primary::after { background: var(--white); }
.btn--primary:hover { color: var(--black); }
.btn--outline {
  border: 1px solid var(--off-white);
  color: var(--off-white);
}
.btn--outline:hover { color: var(--black); }
.btn--ghost {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 10px 24px;
  font-size: 0.7rem;
}
.btn--ghost:hover { color: var(--black); }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  transition: background 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
  transition: color 0.3s;
}
.nav-logo:hover { color: var(--lime); }
.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--lime);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-icon {
  color: var(--grey-light);
  transition: color 0.3s;
  display: flex;
  align-items: center;
}
.nav-icon:hover { color: var(--lime); }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--off-white);
  transition: all 0.3s var(--ease-out);
}
.nav-hamburger.open span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.open span:last-child {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { text-align: center; }
.mobile-menu li { overflow: hidden; }
.mobile-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--off-white);
  padding: 8px 0;
  transition: color 0.3s;
}
.mobile-link:hover { color: var(--lime); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-img.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.2) 0%,
    rgba(10,10,10,0.1) 40%,
    rgba(10,10,10,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 120px;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 40px;
}
.hero-line { display: block; }
.hero-line--accent { color: var(--lime); }
.hero-sub {
  display: flex;
  align-items: center;
  gap: 48px;
}
.hero-sub p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(232, 228, 223, 0.7);
}
.hero-scroll {
  position: absolute;
  bottom: 48px; right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll span {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--grey-light), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* TICKER */
.hero-ticker {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: var(--lime);
  overflow: hidden;
  height: 40px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}
.ticker-track span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
}
.ticker-dot { font-size: 0.5rem !important; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-33.33%); }
}

/* ============================================
   STATEMENT
   ============================================ */
.statement {
  padding: 120px 48px;
  background: var(--black-2);
  border-top: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
}
.statement-inner { max-width: 900px; }
.statement-text {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  color: var(--off-white);
}
.statement-text em {
  font-style: italic;
  color: var(--lime);
}

/* ============================================
   COLLECTION
   ============================================ */
.collection {
  padding: 120px 48px;
  background: var(--black);
}
.collection-header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 64px;
}
.collection-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
}
.collection-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.product-card {
  background: var(--black-2);
  overflow: hidden;
  position: relative;
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.product-img {
  transition: transform 0.7s var(--ease-out);
}
.product-card:hover .product-img { transform: scale(1.06); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.5);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.product-card:hover .product-overlay { opacity: 1; }
.product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.product-badge--lime {
  background: var(--lime);
  color: var(--black);
}
.product-info {
  padding: 20px 24px 28px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.product-desc {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--grey-light);
  margin-bottom: 16px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--off-white);
}
.product-swatches { display: flex; gap: 6px; }
.swatch {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1px solid transparent;
  cursor: none;
  transition: border-color 0.2s;
}
.swatch.active { border-color: var(--off-white); }
.swatch--black { background: #0A0A0A; border-color: var(--charcoal); }
.swatch--grey { background: #888; }
.swatch--olive { background: #4A4A2A; }
.swatch--white { background: #F5F5F5; }
.swatch:hover { border-color: var(--lime); }
.collection-cta {
  margin-top: 64px;
  text-align: center;
}

/* ============================================
   FEATURE SPLIT
   ============================================ */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  background: var(--black-3);
}
.feature-split-img {
  overflow: hidden;
  position: relative;
}
.feature-split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.feature-split:hover .feature-split-img img { transform: scale(1.04); }
.feature-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}
.feature-split-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
}
.feature-split-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 32px;
}
.feature-split-title em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
}
.feature-split-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(232, 228, 223, 0.65);
  margin-bottom: 40px;
  max-width: 420px;
}

/* ============================================
   LOOKBOOK
   ============================================ */
.lookbook {
  padding: 120px 48px;
  background: var(--black);
}
.lookbook-header {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 64px;
}
.lookbook-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
}
.lookbook-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 4px;
}
.lookbook-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.lookbook-item--tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.lookbook-item--wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.lookbook-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.lookbook-item:hover img { transform: scale(1.05); }
.lookbook-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(10,10,10,0.8), transparent);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-light);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.lookbook-item:hover .lookbook-caption { transform: translateY(0); }

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 48px;
  background: var(--black-2);
  border-top: 1px solid var(--charcoal);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
}
.about-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 32px;
}
.about-title em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  color: var(--lime);
}
.about-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(232, 228, 223, 0.65);
  margin-bottom: 20px;
}
.about-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--charcoal);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lime);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-light);
}
.about-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.about-img::before {
  content: '';
  position: absolute;
  inset: -2px;
  border: 1px solid var(--charcoal);
  z-index: 1;
  pointer-events: none;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.about-img:hover img { transform: scale(1.04); }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
  padding: 120px 48px;
  background: var(--black-3);
  border-top: 1px solid var(--charcoal);
  text-align: center;
}
.newsletter-inner { max-width: 600px; margin: 0 auto; }
.newsletter-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 16px;
}
.newsletter-sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--grey-light);
  margin-bottom: 40px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
  border-right: none;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  padding: 14px 20px;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-input::placeholder { color: var(--grey); }
.newsletter-input:focus { border-color: var(--lime); }
.newsletter-form .btn { border-radius: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--charcoal);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding: 80px 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--grey-light);
  margin-bottom: 28px;
}
.footer-socials { display: flex; gap: 16px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-light);
  transition: all 0.3s;
}
.social-link:hover {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(204, 255, 0, 0.05);
}
.footer-links-group h4 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-group a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--grey-light);
  transition: color 0.3s;
}
.footer-links-group a:hover { color: var(--lime); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-top: 1px solid var(--charcoal);
}
.footer-bottom p {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--grey);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--grey);
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--off-white); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-inner { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: 0 24px 100px; }
  .hero-sub { flex-direction: column; gap: 24px; align-items: flex-start; }
  .hero-scroll { display: none; }

  .statement { padding: 80px 24px; }
  .collection { padding: 80px 24px; }
  .collection-header { flex-direction: column; gap: 8px; }
  .products-grid { grid-template-columns: 1fr; gap: 2px; }

  .feature-split { grid-template-columns: 1fr; }
  .feature-split-img { aspect-ratio: 16/9; }
  .feature-split-content { padding: 48px 24px; }

  .lookbook { padding: 80px 24px; }
  .lookbook-header { flex-direction: column; gap: 8px; }
  .lookbook-grid { grid-template-columns: 1fr; }
  .lookbook-item--tall { grid-row: span 1; aspect-ratio: 3/4; }
  .lookbook-item--wide { grid-column: span 1; aspect-ratio: 3/4; }

  .about { padding: 80px 24px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img { order: -1; aspect-ratio: 16/9; }
  .about-stats { gap: 32px; }

  .newsletter { padding: 80px 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid var(--charcoal); border-bottom: none; }

  .footer-top { grid-template-columns: 1fr 1fr; padding: 48px 24px; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; padding: 24px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
  .footer-top { grid-template-columns: 1fr; }
  .about-stats { flex-wrap: wrap; gap: 24px; }
}