/* ============================================================
   AVDI -- Homepage Styles
   BRUTALIST. Massive type. Hard contrast. Grid-breaking.
   ============================================================ */


/* === HERO -- FULL BLEED BRUTALIST === */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.3) brightness(0.2);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 25%, rgba(0,0,0,0.95) 80%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--space-8) var(--space-8) clamp(6rem, 12vh, 10rem);
  max-width: var(--content-edge);
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--neon);
  padding: 8px 20px;
  border: 1px solid rgba(50, 255, 0, 0.15);
  margin-bottom: var(--space-10);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 18rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-8);
}

.hero-title .accent {
  color: var(--white);
  -webkit-text-stroke: 2px var(--white);
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  max-width: 500px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: var(--silver);
  margin-bottom: var(--space-10);
}

.hero-scroll {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.4em;
  color: var(--gray);
  margin-top: var(--space-16);
  animation: pulse 2.5s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.7; }
}


/* === TRUST BAR -- BRUTALIST MARQUEE === */

.trust-bar {
  padding: var(--space-6) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(3rem, 6vw, 6rem);
  flex-wrap: nowrap;
}

.trust-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0.12;
  white-space: nowrap;
}


/* === CATEGORY GRID -- BRUTALIST === */

.categories-section {
  padding: var(--section-standard) 0;
}

.categories-header {
  max-width: var(--content-edge);
  margin: 0 auto var(--space-12);
  padding: 0 var(--space-8);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  line-height: 0.88;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: var(--content-edge);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.categories-grid .category-card:first-child {
  grid-row: span 2;
}


/* === FEATURED PRODUCTS -- BRUTALIST === */

.featured-section {
  padding: var(--section-standard) 0;
  border-top: 4px solid var(--white);
}

.featured-header {
  max-width: var(--content-edge);
  margin: 0 auto var(--space-12);
  padding: 0 var(--space-8);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: var(--content-edge);
  margin: 0 auto;
  padding: 0 var(--space-8);
}


/* === PLATFORM SECTION === */

.platforms-section {
  padding: var(--section-standard) 0;
  border-top: 1px solid var(--border);
}

.platforms-header {
  max-width: var(--content-edge);
  margin: 0 auto var(--space-10);
  padding: 0 var(--space-8);
}

.platforms-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}


/* === VALUE PROPS -- BRUTALIST GRID === */

.values-section {
  padding: var(--section-standard) 0;
  border-top: 4px solid var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: var(--content-edge);
  margin: 0 auto;
  padding: 0 var(--space-8);
  background: var(--border);
}

.value-item {
  padding: var(--space-10) var(--space-8);
  background: var(--black);
}

.value-icon {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: var(--space-6);
  color: var(--white);
  opacity: 0.1;
}

.value-title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-4);
}

.value-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--silver);
}


/* === ABOUT PREVIEW -- BRUTALIST SPLIT === */

.about-preview {
  padding: var(--section-spacious) 0;
  border-top: 1px solid var(--border);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: var(--content-edge);
  margin: 0 auto;
  align-items: stretch;
}

.about-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--graphite);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.2);
}

.about-content {
  padding: var(--space-12) var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--border);
  border-left: none;
}

.about-content p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--bone);
  margin-bottom: var(--space-4);
}


/* === RESPONSIVE === */

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

  .categories-grid .category-card:first-child {
    grid-row: auto;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .about-content {
    border-left: 1px solid var(--border);
    border-top: none;
  }
}

@media (max-width: 600px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }

  .featured-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }

  .hero-title {
    font-size: clamp(3.5rem, 14vw, 8rem);
  }
}
