/* =========================================================
   MOI-CY — GLOBAL STYLE
   Dark Street / Electric Blue
========================================================= */

:root {
  --black: #050505;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #171717;

  --white: #f5f5f5;
  --muted: #9a9a9a;
  --line: rgba(255, 255, 255, 0.12);

  --blue: #168cff;
  --blue-bright: #36a5ff;
  --blue-dark: #0864bd;

  --header-height: 76px;

  --content-width: 1400px;
}


/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;

  background: var(--black);
  color: var(--white);

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  line-height: 1.5;

  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--blue);
  color: #fff;
}


/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.container {
  width: min(
    calc(100% - 68px),
    var(--content-width)
  );

  margin: 0 auto;
}


/* =========================================================
   HEADER
   LINKS = LOGO
   MITTE = NAVIGATION
   RECHTS = SPRACHE
========================================================= */

.header {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 1000;

  height: var(--header-height);

  display: grid;

  grid-template-columns:
    1fr
    auto
    1fr;

  align-items: center;

  padding: 0 34px;

  background:
    rgba(5, 5, 5, 0.94);

  border-bottom:
    1px solid var(--line);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}


/* ---------------------------------------------------------
   LOGO — LINKS
--------------------------------------------------------- */

.logo {
  position: static;

  justify-self: start;

  display: flex;
  align-items: center;

  gap: 8px;

  color: var(--white);

  flex-shrink: 0;

  font-size: 25px;
  font-weight: 900;

  letter-spacing: -1.5px;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.logo:hover {
  color: var(--blue-bright);
}


/* =========================================================
   NAVIGATION — MITTE
========================================================= */

.navigation {
  position: static;

  justify-self: center;

  display: flex;
  align-items: center;

  gap: 25px;

  white-space: nowrap;
}

.navigation a {
  position: relative;

  display: inline-flex;
  align-items: center;

  height: var(--header-height);

  color: var(--muted);

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 1.2px;

  transition:
    color 0.2s ease;
}

.navigation a::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 18px;

  height: 1px;

  background: var(--blue);

  transform:
    scaleX(0);

  transform-origin: center;

  transition:
    transform 0.2s ease;
}

.navigation a:hover {
  color: var(--white);
}

.navigation a:hover::after {
  transform: scaleX(1);
}


/* =========================================================
   LANGUAGE SWITCHER — RECHTS
========================================================= */

.language-switcher {
  position: static;

  justify-self: end;

  display: flex;
  align-items: center;

  gap: 5px;

  margin: 0;
  padding: 0;
}

.language-switcher button,
.language-switcher a {
  border: 0;

  background: transparent;

  color: var(--muted);

  padding: 4px 5px;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.8px;

  transition:
    color 0.2s ease;
}

.language-switcher button:hover,
.language-switcher a:hover,
.language-switcher .active {
  color: var(--blue-bright);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-button {
  display: none;

  position: absolute;

  right: 20px;

  width: 42px;
  height: 42px;

  border: 1px solid var(--line);

  background: transparent;

  color: var(--white);

  font-size: 20px;

  align-items: center;
  justify-content: center;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
  position: fixed;

  top: var(--header-height);
  left: 0;
  right: 0;

  z-index: 999;

  display: none;

  padding: 20px;

  background: rgba(5, 5, 5, 0.98);

  border-bottom: 1px solid var(--line);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;

  padding: 15px 0;

  border-bottom:
    1px solid var(--line);

  color: var(--white);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 1px;
}

.mobile-menu a:hover {
  color: var(--blue-bright);
}

.mobile-language-switcher {
  display: none;

  gap: 8px;

  margin-top: 20px;
}

.mobile-language-switcher button {
  border: 1px solid var(--line);

  background: transparent;

  color: var(--muted);

  padding: 8px 12px;
}

.mobile-language-switcher button.active {
  color: var(--blue-bright);
  border-color: var(--blue);
}


/* =========================================================
   MAIN
========================================================= */

main {
  padding-top: var(--header-height);
}

.page {
  min-height: 100vh;

  padding:
    80px 0
    100px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  min-height:
    calc(100vh - var(--header-height));

  display: flex;

  flex-direction: column;

  justify-content: center;
  align-items: center;

  text-align: center;

  padding:
    80px 30px;
}

.hero-small {
  margin-bottom: 20px;

  color: var(--blue-bright);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 4px;
}

.hero h1 {
  margin: 0;

  font-size:
    clamp(70px, 15vw, 220px);

  line-height: 0.8;

  font-weight: 900;

  letter-spacing:
    -0.08em;

  text-transform: uppercase;
}

.hero-subtitle {
  margin-top: 35px;

  color: var(--muted);

  font-size: 13px;

  letter-spacing: 2px;
}

.scroll-indicator {
  margin-top: 70px;

  color: var(--muted);

  font-size: 10px;

  letter-spacing: 3px;
}


/* =========================================================
   GRAFFITI LOGO
========================================================= */

.graffiti-logo {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 0;

  margin: 0 auto;

  transform:
    rotate(-2deg);
}

.graffiti-letter {
  display: inline-block;

  color: var(--white);

  font-size:
    clamp(70px, 14vw, 190px);

  font-weight: 900;

  line-height: 0.8;

  letter-spacing:
    -0.08em;

  opacity: 0;

  transform:
    translateY(30px)
    rotate(-5deg);

  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.graffiti-letter.sprayed {
  opacity: 1;

  transform:
    translateY(0)
    rotate(0);
}


/* =========================================================
   SECTION LABELS
========================================================= */

.section-label {
  display: flex;
  align-items: center;

  gap: 15px;

  margin-bottom: 18px;

  color: var(--blue-bright);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 3px;
}

.section-label::before {
  content: "";

  width: 35px;
  height: 1px;

  background: var(--blue);
}


/* =========================================================
   HEADINGS
========================================================= */

h1,
h2,
h3 {
  margin-top: 0;

  text-transform: uppercase;
}

.page-title {
  margin-bottom: 60px;

  font-size:
    clamp(50px, 8vw, 110px);

  line-height: 0.9;

  letter-spacing: -0.05em;
}

.section-title {
  margin-bottom: 25px;

  font-size:
    clamp(38px, 6vw, 80px);

  line-height: 0.9;

  letter-spacing: -0.05em;
}


/* =========================================================
   INTRO / ABOUT
========================================================= */

.intro-layout {
  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 70px;

  align-items: start;

  padding:
    110px 0;
}

.intro-layout h2 {
  margin-bottom: 30px;

  font-size:
    clamp(42px, 6vw, 80px);

  line-height: 0.9;

  letter-spacing: -0.05em;
}

.intro-layout p {
  max-width: 650px;

  margin:
    0 0 18px;

  color: var(--muted);

  font-size: 16px;
}


/* =========================================================
   FEATURE SECTION
========================================================= */

.feature-section {
  padding:
    100px 0;

  border-top:
    1px solid var(--line);
}

.feature-section h2 {
  font-size:
    clamp(50px, 8vw, 110px);

  line-height: 0.85;

  letter-spacing: -0.06em;
}

.feature-text {
  max-width: 650px;

  color: var(--muted);

  font-size: 16px;
}


/* =========================================================
   MEDIA GRID
========================================================= */

.media-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 20px;

  margin-top: 45px;
}

.media-grid img,
.media-grid video {
  width: 100%;

  aspect-ratio: 16 / 10;

  object-fit: cover;

  background: var(--dark-2);
}

.media-item {
  position: relative;

  overflow: hidden;

  background: var(--dark-2);
}

.media-item img {
  transition:
    transform 0.5s ease;
}

.media-item:hover img {
  transform:
    scale(1.03);
}

.media-caption {
  padding: 15px 0;

  color: var(--muted);

  font-size: 10px;

  letter-spacing: 2px;
}


/* =========================================================
   VIDEO
========================================================= */

.video-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 30px;
}

.video-card {
  background: var(--dark-2);
}

.video-card video,
.video-card iframe {
  display: block;

  width: 100%;

  aspect-ratio: 16 / 9;

  border: 0;
}

.video-card-content {
  padding: 20px;
}

.video-card-content h3 {
  margin-bottom: 8px;

  font-size: 18px;
}

.video-card-content p {
  margin: 0;

  color: var(--muted);

  font-size: 14px;
}


/* =========================================================
   BUTTONS
========================================================= */

.button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 48px;

  padding:
    0 24px;

  border:
    1px solid var(--blue);

  background:
    transparent;

  color: var(--white);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 1.5px;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  background: var(--blue);

  color: #fff;

  border-color: var(--blue);
}


/* =========================================================
   SKATEPARK INTRO
========================================================= */

.skatepark-intro {
  display: grid;

  grid-template-columns:
    1fr auto;

  gap: 40px;

  align-items: end;

  margin-bottom: 60px;
}

.skatepark-intro p {
  max-width: 600px;

  color: var(--muted);
}


/* =========================================================
   SKATEPARK FILTERS
========================================================= */

.skatepark-filters {
  display: grid;

  grid-template-columns:
    2fr
    1fr
    1fr;

  gap: 15px;

  margin-bottom: 40px;
}

.skatepark-filters label {
  display: block;

  margin-bottom: 8px;

  color: var(--muted);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 2px;
}

.skatepark-filters input,
.skatepark-filters select {
  width: 100%;

  min-height: 48px;

  padding:
    0 14px;

  border:
    1px solid var(--line);

  outline: none;

  background:
    var(--dark-2);

  color: var(--white);

  border-radius: 0;
}

.skatepark-filters input:focus,
.skatepark-filters select:focus {
  border-color:
    var(--blue);
}


/* =========================================================
   SKATEPARK CARDS
========================================================= */

.skatepark-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 35px;
}

.skatepark-card {
  overflow: hidden;

  background:
    var(--dark-2);

  border:
    1px solid var(--line);
}

.skatepark-card-image {
  position: relative;

  overflow: hidden;
}

.skatepark-card-image img {
  width: 100%;

  aspect-ratio: 16 / 10;

  object-fit: cover;

  transition:
    transform 0.5s ease;
}

.skatepark-card:hover
.skatepark-card-image img {
  transform:
    scale(1.03);
}

.skatepark-card-content {
  padding: 25px;
}

.skatepark-card-location {
  margin-bottom: 10px;

  color: var(--blue-bright);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 2px;
}

.skatepark-card h3 {
  margin-bottom: 15px;

  font-size: 28px;

  line-height: 1;
}

.skatepark-card p {
  margin: 0;

  color: var(--muted);

  font-size: 14px;
}

.skatepark-card-footer {
  display: flex;

  justify-content: space-between;
  align-items: center;

  margin-top: 25px;

  padding-top: 18px;

  border-top:
    1px solid var(--line);
}


/* =========================================================
   RATING
========================================================= */

.rating {
  color: var(--blue-bright);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 1px;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 15px;
}

.gallery-grid img {
  width: 100%;

  aspect-ratio: 1 / 1;

  object-fit: cover;

  cursor: pointer;

  transition:
    opacity 0.2s ease,
    transform 0.3s ease;
}

.gallery-grid img:hover {
  opacity: 0.8;

  transform:
    scale(0.99);
}


/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox {
  position: fixed;

  inset: 0;

  z-index: 2000;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 30px;

  background:
    rgba(0, 0, 0, 0.94);
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;

  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;

  border: 0;

  background: transparent;

  color: var(--white);

  font-size: 30px;
}

.lightbox-close {
  top: 25px;
  right: 30px;
}

.lightbox-prev {
  left: 25px;
}

.lightbox-next {
  right: 25px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--blue-bright);
}


/* =========================================================
   PRODUCT SECTION
========================================================= */

.products-section {
  padding:
    100px 0;

  border-top:
    1px solid var(--line);
}

.products-section h2 {
  margin-bottom: 40px;

  font-size:
    clamp(45px, 7vw, 90px);

  line-height: 0.85;

  letter-spacing: -0.06em;
}

.product-slider {
  position: relative;

  overflow: hidden;
}

.product-slide {
  display: none;

  width: 100%;
}

.product-slide.active {
  display: block;
}

.product-slide a {
  display: block;
}

.product-slide img {
  width: 100%;

  aspect-ratio: 16 / 7;

  object-fit: cover;

  background: var(--dark-2);
}

.product-info {
  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 20px;

  padding: 20px 0;
}

.product-info h3 {
  margin: 0;

  font-size: 20px;
}

.product-info span {
  color: var(--muted);

  font-size: 10px;

  letter-spacing: 2px;
}

.product-dots {
  display: flex;

  justify-content: center;

  gap: 8px;

  margin-top: 20px;
}

.product-dot {
  width: 7px;
  height: 7px;

  padding: 0;

  border: 0;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.25);
}

.product-dot.active {
  background:
    var(--blue);
}


/* =========================================================
   SHOP
========================================================= */

.shop-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 30px;
}

.shop-card {
  padding: 35px;

  background:
    var(--dark-2);

  border:
    1px solid var(--line);
}

.shop-card img {
  width: 100%;

  aspect-ratio: 1 / 1;

  object-fit: cover;

  margin-bottom: 25px;
}

.shop-card h2 {
  margin-bottom: 15px;

  font-size: 30px;
}

.shop-card p {
  margin-bottom: 25px;

  color: var(--muted);
}


/* =========================================================
   CONTACT
========================================================= */

.contact-layout {
  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 80px;
}

.contact-intro p {
  max-width: 550px;

  color: var(--muted);

  font-size: 16px;
}

.contact-form {
  display: flex;

  flex-direction: column;

  gap: 22px;
}

.form-group {
  display: flex;

  flex-direction: column;

  gap: 8px;
}

.form-group label {
  color: var(--muted);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 2px;
}

.form-group input,
.form-group textarea {
  width: 100%;

  padding: 15px;

  border:
    1px solid var(--line);

  outline: none;

  border-radius: 0;

  background:
    var(--dark-2);

  color: var(--white);
}

.form-group input {
  min-height: 48px;
}

.form-group textarea {
  min-height: 180px;

  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color:
    var(--blue);
}


/* =========================================================
   FINAL / OUTRO
========================================================= */

.final-section {
  min-height: 60vh;

  display: flex;

  flex-direction: column;

  justify-content: center;
  align-items: center;

  text-align: center;

  padding:
    100px 30px;
}

.final-section h2 {
  margin: 0;

  font-size:
    clamp(50px, 10vw, 150px);

  line-height: 0.8;

  letter-spacing: -0.07em;
}

.final-section p {
  margin-top: 25px;

  color: var(--muted);

  font-size: 12px;

  letter-spacing: 3px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 30px;

  padding:
    35px 34px;

  border-top:
    1px solid var(--line);

  color: var(--muted);

  font-size: 10px;

  letter-spacing: 1.5px;
}

.footer a:hover {
  color: var(--white);
}

.footer-links {
  display: flex;

  gap: 20px;
}


/* =========================================================
   EMPTY / NOTICE
========================================================= */

.notice {
  padding: 40px;

  border:
    1px solid var(--line);

  background:
    var(--dark-2);

  color: var(--muted);

  text-align: center;
}

.no-results {
  padding: 60px 20px;

  color: var(--muted);

  text-align: center;

  letter-spacing: 2px;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {

  .header {
    padding:
      0 22px;
  }

  .navigation {
    gap: 15px;
  }

  .navigation a {
    font-size: 10px;
  }

  .logo {
    font-size: 22px;
  }

  .intro-layout,
  .contact-layout {
    gap: 40px;
  }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 900px) {

  :root {
    --header-height: 68px;
  }


  /* HEADER */

  .header {
    display: flex;

    justify-content: space-between;
    align-items: center;

    padding:
      0 20px;
  }


  /* LOGO */

  .logo {
    position: static;

    transform: none;

    justify-self: auto;

    font-size: 23px;
  }


  /* DESKTOP NAV */

  .navigation {
    display: none;
  }


  /* DESKTOP LANGUAGE */

  .language-switcher {
    display: none;
  }


  /* MENU BUTTON */

  .menu-button {
    display: flex;
  }


  /* MAIN */

  .page {
    padding:
      60px 0 80px;
  }


  .container {
    width:
      calc(100% - 40px);
  }


  /* HERO */

  .hero {
    min-height:
      calc(100vh - var(--header-height));

    padding:
      60px 20px;
  }


  .hero h1 {
    font-size:
      clamp(60px, 20vw, 120px);
  }


  /* INTRO */

  .intro-layout {
    grid-template-columns: 1fr;

    gap: 40px;

    padding:
      70px 0;
  }


  /* MEDIA */

  .media-grid,
  .video-grid,
  .skatepark-grid {
    grid-template-columns: 1fr;
  }


  /* SKATEPARK */

  .skatepark-intro {
    grid-template-columns: 1fr;

    align-items: start;
  }

  .skatepark-filters {
    grid-template-columns: 1fr;
  }


  /* GALLERY */

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


  /* SHOP */

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


  /* CONTACT */

  .contact-layout {
    grid-template-columns: 1fr;

    gap: 50px;
  }


  /* PRODUCTS */

  .product-slide img {
    aspect-ratio: 4 / 3;
  }


  /* FOOTER */

  .footer {
    flex-direction: column;

    align-items: flex-start;

    padding:
      30px 20px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

  .page-title {
    font-size:
      50px;
  }

  .section-title {
    font-size:
      42px;
  }

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

  .skatepark-card-content {
    padding: 20px;
  }

  .product-info {
    flex-direction: column;

    align-items: flex-start;
  }

  .final-section h2 {
    font-size:
      58px;
  }

}

/* =========================================================
   MOI-CY HOMEPAGE
   DARK STREET / ELECTRIC BLUE / GRAFFITI
========================================================= */


/* =========================================================
   HOMEPAGE BACKGROUND
========================================================= */

body:has(.hero) {
  background:
    radial-gradient(
      circle at 50% 10%,
      rgba(0, 110, 255, 0.12),
      transparent 34%
    ),
    #050608;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;

  min-height: calc(100vh - var(--header-height));

  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(0, 132, 255, 0.28),
      transparent 27%
    ),
    linear-gradient(
      145deg,
      #050608 0%,
      #07101b 48%,
      #050608 100%
    );

  border-bottom: 1px solid rgba(30, 145, 255, 0.28);
}


/* BLUE LIGHT */

.hero::before {
  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  background:
    radial-gradient(
      circle,
      rgba(0, 132, 255, 0.22),
      rgba(0, 132, 255, 0.07) 35%,
      transparent 70%
    );

  filter: blur(15px);

  pointer-events: none;
}


/* BLUE EDGE */

.hero::after {
  content: "";

  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 2px;

  background:
    linear-gradient(
      90deg,
      transparent,
      #168cff,
      #54b5ff,
      #168cff,
      transparent
    );

  opacity: 0.8;
}


/* BACKGROUND */

.hero-background {
  position: absolute;

  inset: 0;

  background:
    radial-gradient(
      ellipse at center,
      rgba(20, 140, 255, 0.10),
      transparent 55%
    );

  pointer-events: none;
}


/* GRID */

.hero-grid {
  position: absolute;

  inset: 0;

  opacity: 0.18;

  background-image:
    linear-gradient(
      rgba(70, 160, 255, 0.12) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(70, 160, 255, 0.12) 1px,
      transparent 1px
    );

  background-size:
    70px 70px;

  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 20%,
      black 80%,
      transparent
    );

  pointer-events: none;
}


/* GLOW */

.hero-glow {
  position: absolute;

  width: 360px;
  height: 360px;

  border-radius: 50%;

  background:
    rgba(0, 119, 255, 0.18);

  filter: blur(90px);

  pointer-events: none;
}


/* HERO CONTENT */

.hero-content {
  position: relative;

  z-index: 5;

  width: 100%;

  text-align: center;

  padding:
    80px 30px;
}


/* SMALL HERO LABEL */

.hero-small {
  display: block;

  margin-bottom: 28px;

  color: #63b9ff;

  font-family:
    Inter,
    Arial,
    sans-serif;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 5px;

  text-transform: uppercase;
}


/* =========================================================
   GRAFFITI LOGO
========================================================= */

.graffiti-logo {
  position: relative;

  display: flex;

  justify-content: center;
  align-items: center;

  width: 100%;

  transform:
    rotate(-2deg);
}


.graffiti-word {
  position: relative;

  display: flex;

  justify-content: center;
  align-items: center;

  gap: clamp(0px, 0.3vw, 5px);

  filter:
    drop-shadow(
      0 0 10px rgba(0, 125, 255, 0.35)
    );
}


/* EACH LETTER */

.graffiti-letter {
  position: relative;

  display: inline-block;

  font-family:
    "Permanent Marker",
    cursive;

  font-size:
    clamp(85px, 17vw, 230px);

  font-weight: 400;

  line-height: 0.75;

  letter-spacing:
    -0.08em;

  color: #f4f9ff;

  -webkit-text-stroke:
    clamp(1px, 0.25vw, 4px)
    #168cff;

  text-shadow:
    5px 5px 0 #075eb5,
    9px 9px 0 rgba(0, 72, 150, 0.5),
    0 0 28px rgba(0, 140, 255, 0.35);

  opacity: 0;

  transform:
    translateY(35px)
    rotate(-7deg)
    scale(0.85);

  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(.2,.8,.2,1);
}


/* SPRAYED */

.graffiti-letter.sprayed {
  opacity: 1;

  transform:
    translateY(0)
    rotate(0deg)
    scale(1);
}


/* INDIVIDUAL LETTER MOVEMENT */

.graffiti-letter:nth-child(1) {
  transform:
    translateY(20px)
    rotate(-8deg)
    scale(0.9);
}

.graffiti-letter:nth-child(2) {
  transform:
    translateY(-10px)
    rotate(4deg)
    scale(1.05);
}

.graffiti-letter:nth-child(3) {
  transform:
    translateY(14px)
    rotate(-4deg)
    scale(0.95);
}

.graffiti-letter:nth-child(4) {
  transform:
    translateY(-5px)
    rotate(7deg)
    scale(0.9);
}

.graffiti-letter:nth-child(5) {
  transform:
    translateY(10px)
    rotate(-5deg)
    scale(1.02);
}

.graffiti-letter:nth-child(6) {
  transform:
    translateY(-12px)
    rotate(5deg)
    scale(1.08);
}


/* =========================================================
   HERO SIDE TEXT
========================================================= */

.hero-side-text {
  position: absolute;

  right: 32px;
  top: 50%;

  z-index: 5;

  color: rgba(150, 200, 255, 0.65);

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 3px;

  writing-mode:
    vertical-rl;

  transform:
    translateY(-50%);
}


/* =========================================================
   HERO BOTTOM
========================================================= */

.hero-bottom {
  position: absolute;

  left: 50%;
  bottom: 32px;

  z-index: 5;

  transform:
    translateX(-50%);

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 12px;

  color: rgba(180, 215, 245, 0.65);

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 3px;
}


.scroll-line {
  width: 1px;

  height: 45px;

  background:
    linear-gradient(
      to bottom,
      #168cff,
      transparent
    );
}


/* =========================================================
   HOMEPAGE SECTIONS
========================================================= */

.intro-section,
.feature-section,
.media-section,
.products-section,
.final-section {
  position: relative;

  width: min(
    calc(100% - 80px),
    1380px
  );

  margin-left: auto;
  margin-right: auto;
}


/* =========================================================
   SECTION LABEL
========================================================= */

body:has(.hero) .section-label {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-bottom: 30px;

  color: #4daeff;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 4px;

  text-transform: uppercase;
}


body:has(.hero) .section-label::before {
  width: 28px;

  height: 2px;

  background:
    #168cff;
}


/* =========================================================
   ABOUT
========================================================= */

.intro-section {
  padding:
    130px 0
    120px;

  border-bottom:
    1px solid rgba(255,255,255,0.08);
}


.intro-layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(320px, 0.8fr);

  gap: 100px;

  align-items: start;
}


/* ABOUT TITLE */

.intro-title h2 {
  display: flex;

  flex-direction: column;

  margin: 0;

  font-family:
    Inter,
    Arial,
    sans-serif;

  font-size:
    clamp(55px, 8vw, 115px);

  font-weight: 800;

  line-height: 0.82;

  letter-spacing:
    -0.075em;

  text-transform: uppercase;
}


.intro-title h2 span:first-child {
  color: #ffffff;
}


.intro-title h2 span:last-child {
  color: #168cff;

  margin-left: 8vw;

  text-shadow:
    0 0 30px rgba(0, 132, 255, 0.2);
}


/* ABOUT TEXT */

.intro-text {
  padding-top: 10px;

  max-width: 560px;
}


.intro-text p {
  margin:
    0 0 20px;

  color: #9ba7b5;

  font-size: 15px;

  line-height: 1.75;
}


.intro-text p:first-child {
  color: #e7f2ff;

  font-size: 18px;

  font-weight: 600;
}


.handwritten {
  display: block;

  margin-top: 30px;

  color: #4db2ff;

  font-family:
    "Permanent Marker",
    cursive;

  font-size: 24px;

  transform:
    rotate(-4deg);
}


/* =========================================================
   FIND YOUR SPOT
========================================================= */

.feature-section {
  padding:
    120px 0;

  border-bottom:
    1px solid rgba(255,255,255,0.08);
}


.feature-heading {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  gap: 40px;
}


.feature-heading h2 {
  display: flex;

  flex-direction: column;

  margin: 0;

  font-size:
    clamp(65px, 10vw, 145px);

  line-height: 0.78;

  letter-spacing:
    -0.08em;

  font-weight: 900;
}


.feature-heading h2 span:last-child {
  color: #168cff;

  margin-left: 9vw;

  text-shadow:
    0 0 40px rgba(0, 130, 255, 0.25);
}


/* ARROW */

.feature-arrow {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 72px;
  height: 72px;

  flex-shrink: 0;

  border:
    1px solid #168cff;

  color: #4db2ff;

  font-size: 30px;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}


.feature-arrow:hover {
  background: #168cff;

  color: white;

  transform:
    translateX(6px);
}


.feature-description {
  max-width: 500px;

  margin-top: 35px;

  color: #8996a5;

  font-size: 14px;
}


/* =========================================================
   MEDIA
========================================================= */

.media-section {
  padding:
    120px 0;
}


.media-grid {
  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 20px;
}


.media-card {
  position: relative;

  min-height: 390px;

  overflow: hidden;

  display: flex;

  align-items: flex-end;

  padding: 35px;

  border:
    1px solid rgba(60, 160, 255, 0.25);

  background:
    linear-gradient(
      145deg,
      #091727,
      #050608
    );

  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}


.media-card:first-child {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(0, 132, 255, 0.35),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #0a1e34,
      #050608
    );
}


.media-card:last-child {
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(0, 92, 255, 0.32),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #071321,
      #050608
    );
}


.media-card::before {
  content: "";

  position: absolute;

  inset: 14px;

  border:
    1px solid rgba(80, 170, 255, 0.12);

  pointer-events: none;
}


.media-card:hover {
  border-color:
    rgba(60, 165, 255, 0.75);

  transform:
    translateY(-5px);
}


.media-card-content {
  position: relative;

  z-index: 2;
}


.media-card-content > span {
  color: #5db5ff;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 4px;
}


.media-card h2 {
  margin:
    15px 0 25px;

  font-size:
    clamp(55px, 7vw, 100px);

  line-height: 0.8;

  letter-spacing:
    -0.07em;
}


.media-card h2 span:first-child {
  color: white;
}


.media-card strong {
  color: #91a7bd;

  font-size: 9px;

  letter-spacing: 2px;
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
  padding:
    120px 0;

  border-top:
    1px solid rgba(255,255,255,0.08);
}


.products-header {
  display: flex;

  justify-content: space-between;
  align-items: flex-end;

  gap: 40px;

  margin-bottom: 45px;
}


.products-header h2 {
  display: flex;

  flex-direction: column;

  margin: 0;

  font-size:
    clamp(55px, 8vw, 110px);

  line-height: 0.8;

  letter-spacing:
    -0.07em;
}


.products-header h2 span:last-child {
  color: #168cff;

  margin-left: 7vw;
}


.products-shop-link {
  color: #54b4ff;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 3px;

  transition:
    color 0.2s ease;
}


.products-shop-link:hover {
  color: white;
}


/* PRODUCT SLIDER */

.product-slider {
  position: relative;

  overflow: hidden;

  border:
    1px solid rgba(50, 160, 255, 0.3);

  background:
    #07111c;
}


.product-slide {
  position: relative;

  display: none;

  min-height: 450px;

  padding: 45px;

  background:
    radial-gradient(
      circle at 75% 30%,
      rgba(0, 130, 255, 0.28),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #0a1b2d,
      #050608
    );
}


.product-slide.active {
  display: block;
}


/* PLACEHOLDER PRODUCT */

.product-placeholder {
  display: flex;

  justify-content: center;
  align-items: center;

  min-height: 300px;
}


.placeholder-shape {
  display: flex;

  align-items: center;
  justify-content: center;

  color: white;

  font-family:
    "Permanent Marker",
    cursive;

  font-size: 45px;

  text-shadow:
    4px 4px 0 #075eb5;

  filter:
    drop-shadow(
      0 0 30px rgba(0, 132, 255, 0.3)
    );
}


.hoodie-shape {
  width: 220px;
  height: 240px;

  border-radius:
    35px 35px 20px 20px;

  background:
    linear-gradient(
      145deg,
      #158cff,
      #064f9b
    );

  clip-path:
    polygon(
      28% 0,
      40% 8%,
      60% 8%,
      72% 0,
      100% 22%,
      84% 50%,
      73% 43%,
      73% 100%,
      27% 100%,
      27% 43%,
      16% 50%,
      0 22%
    );
}


.shirt-shape {
  width: 260px;
  height: 220px;

  background:
    linear-gradient(
      145deg,
      #1a92ff,
      #06477f
    );

  clip-path:
    polygon(
      28% 0,
      42% 12%,
      58% 12%,
      72% 0,
      100% 20%,
      82% 45%,
      70% 35%,
      70% 100%,
      30% 100%,
      30% 35%,
      18% 45%,
      0 20%
    );
}


.board-shape {
  width: 70px;
  height: 330px;

  border-radius:
    50%;

  background:
    linear-gradient(
      90deg,
      #075eb5,
      #36a8ff,
      #075eb5
    );

  transform:
    rotate(-22deg);
}


/* PRODUCT INFO */

.product-info {
  position: absolute;

  left: 45px;
  bottom: 35px;

  z-index: 3;
}


.product-category {
  display: block;

  margin-bottom: 8px;

  color: #54b4ff;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 3px;
}


.product-info h3 {
  margin: 0;

  color: white;

  font-size: 28px;

  letter-spacing:
    -0.04em;
}


.product-arrow {
  position: absolute;

  right: 35px;
  bottom: 35px;

  color: #4db2ff;

  font-size: 30px;
}


/* DOTS */

.product-dots {
  display: flex;

  justify-content: center;

  gap: 9px;

  margin-top: 18px;
}


.product-dot {
  width: 7px;
  height: 7px;

  padding: 0;

  border: 0;

  border-radius: 50%;

  background:
    rgba(255,255,255,0.25);

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}


.product-dot.active {
  background: #168cff;

  transform:
    scale(1.35);

  box-shadow:
    0 0 12px rgba(0,140,255,0.6);
}


/* =========================================================
   FINAL
========================================================= */

.final-section {
  width: 100%;

  min-height: 75vh;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  text-align: center;

  padding:
    130px 30px;

  background:
    radial-gradient(
      circle at center,
      rgba(0, 125, 255, 0.17),
      transparent 45%
    );
}


.final-section > span {
  color: #4faeff;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 5px;
}


.final-section h2 {
  display: flex;

  flex-direction: column;

  margin:
    30px 0 0;

  font-size:
    clamp(65px, 12vw, 175px);

  line-height: 0.75;

  letter-spacing:
    -0.08em;
}


.final-section h2 span {
  color: white;
}


.final-section h2 em {
  color: #168cff;

  font-family:
    "Permanent Marker",
    cursive;

  font-size:
    0.55em;

  font-style: normal;

  transform:
    rotate(-4deg);

  text-shadow:
    4px 4px 0 #064f9b,
    0 0 30px rgba(0,140,255,0.35);
}


/* =========================================================
   HOMEPAGE FOOTER
========================================================= */

body:has(.hero) .footer {
  position: relative;

  background:
    #030507;

  border-top:
    1px solid rgba(40, 150, 255, 0.22);
}


.footer-logo {
  color: white;

  font-family:
    "Permanent Marker",
    cursive;

  font-size: 24px;
}


.footer-mark {
  color: #168cff;
}


.footer-center {
  color: #6e8194;
}


.footer-copy {
  color: #516273;
}


/* =========================================================
   MOBILE HOMEPAGE
========================================================= */

@media (max-width: 900px) {

  .hero {
    min-height:
      calc(100svh - var(--header-height));
  }


  .hero-content {
    padding:
      60px 20px;
  }


  .graffiti-letter {
    font-size:
      clamp(65px, 19vw, 130px);

    -webkit-text-stroke:
      2px #168cff;

    text-shadow:
      3px 3px 0 #075eb5,
      0 0 20px rgba(0,140,255,0.35);
  }


  .hero-side-text {
    display: none;
  }


  .hero-grid {
    background-size:
      45px 45px;
  }


  .intro-section,
  .feature-section,
  .media-section,
  .products-section {
    width:
      calc(100% - 40px);

    padding:
      80px 0;
  }


  .intro-layout {
    grid-template-columns: 1fr;

    gap: 50px;
  }


  .intro-title h2 {
    font-size:
      clamp(48px, 14vw, 80px);
  }


  .intro-title h2 span:last-child {
    margin-left: 12vw;
  }


  .feature-heading {
    align-items: flex-start;
  }


  .feature-heading h2 {
    font-size:
      clamp(55px, 15vw, 100px);
  }


  .feature-arrow {
    width: 55px;
    height: 55px;

    font-size: 23px;
  }


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


  .media-card {
    min-height: 300px;
  }


  .products-header {
    align-items: flex-start;

    flex-direction: column;
  }


  .products-header h2 {
    font-size:
      clamp(55px, 14vw, 95px);
  }


  .product-slide {
    min-height: 400px;

    padding: 25px;
  }


  .product-placeholder {
    min-height: 270px;
  }


  .product-info {
    left: 25px;
    bottom: 25px;
  }


  .product-arrow {
    right: 25px;
    bottom: 25px;
  }


  .final-section {
    min-height: 60vh;

    padding:
      100px 20px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 500px) {

  .hero-small {
    font-size: 8px;

    letter-spacing: 3px;
  }


  .graffiti-letter {
    font-size:
      clamp(52px, 17vw, 85px);
  }


  .hero-bottom {
    bottom: 20px;
  }


  .intro-section,
  .feature-section,
  .media-section,
  .products-section {
    width:
      calc(100% - 30px);
  }


  .feature-heading {
    gap: 15px;
  }


  .feature-arrow {
    width: 45px;
    height: 45px;

    font-size: 20px;
  }


  .media-card {
    min-height: 270px;

    padding: 25px;
  }


  .media-card h2 {
    font-size: 60px;
  }


  .product-slide {
    min-height: 350px;
  }


  .placeholder-shape {
    transform:
      scale(0.8);
  }


  .final-section h2 {
    font-size:
      clamp(55px, 18vw, 90px);
  }

}

/* =========================================================
   MOI-CY HOMEPAGE
   ---------------------------------------------------------
   Nur für index.html
   Bestehende Seitenstyles werden nicht überschrieben.
========================================================= */


/* =========================================================
   HOMEPAGE BASE
========================================================= */

body.home-page {
  background:
    radial-gradient(
      circle at 78% 8%,
      rgba(0, 115, 255, 0.18),
      transparent 28%
    ),
    radial-gradient(
      circle at 8% 65%,
      rgba(0, 65, 180, 0.10),
      transparent 30%
    ),
    #050505;
  color: #f5f5f5;
  overflow-x: hidden;
}


/* =========================================================
   CONTAINER
========================================================= */

.home-container {
  width: min(1400px, 90%);
  margin: 0 auto;
}


/* =========================================================
   HERO
========================================================= */

.home-hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;

  background:
    linear-gradient(
      115deg,
      #020305 0%,
      #050a11 48%,
      #06172d 100%
    );
}


/* grid */

.home-hero-grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255,255,255,0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.025) 1px,
      transparent 1px
    );

  background-size: 55px 55px;

  mask-image:
    linear-gradient(
      to bottom,
      black 0%,
      transparent 90%
    );

  pointer-events: none;
}


/* blue glow */

.home-hero-glow {
  position: absolute;

  width: 700px;
  height: 700px;

  right: -220px;
  top: -260px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(0, 132, 255, 0.28),
      rgba(0, 90, 255, 0.08) 38%,
      transparent 70%
    );

  filter: blur(15px);

  pointer-events: none;
}


/* hero content */

.home-hero-content {
  position: relative;
  z-index: 2;

  width: min(1400px, 90%);
  margin: 0 auto;

  padding: 105px 0 85px;
}


/* kicker */

.home-hero-kicker {
  display: flex;
  align-items: center;
  gap: 13px;

  margin-bottom: 28px;

  color: #55b7ff;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.24em;
  text-transform: uppercase;
}


.home-hero-kicker::before {
  content: "";

  width: 42px;
  height: 2px;

  background: #168cff;

  box-shadow:
    0 0 14px rgba(22, 140, 255, 0.8);
}


.home-hero-kicker span {
  color: rgba(255,255,255,0.35);
}


/* logo */

.home-logo-stage {
  position: relative;
  width: fit-content;

  margin-left: -10px;
}


.home-graffiti-logo {
  position: relative;

  margin: 0;

  font-family: "Permanent Marker", cursive;

  font-size: clamp(
    110px,
    19vw,
    280px
  );

  line-height: 0.72;

  letter-spacing: -0.075em;

  color: #f8fbff;

  transform: rotate(-4deg);

  text-shadow:
    7px 7px 0 #004ca8,
    13px 13px 0 #06101d,
    0 0 28px rgba(0, 132, 255, 0.55);

  -webkit-text-stroke:
    2px rgba(16, 137, 255, 0.75);
}


.home-graffiti-logo::after {
  content: "MOI-CY";

  position: absolute;

  left: 17%;
  bottom: -34px;

  font-family: "Bebas Neue", sans-serif;

  font-size: clamp(
    20px,
    3vw,
    42px
  );

  letter-spacing: 0.5em;

  color: #55b7ff;

  transform: rotate(4deg);

  text-shadow:
    0 0 14px rgba(0, 137, 255, 0.8);
}


/* spray */

.home-spray {
  position: absolute;

  display: block;

  background: #168cff;

  border-radius: 50%;

  box-shadow:
    0 0 12px rgba(0, 130, 255, 0.65);

  pointer-events: none;
}


.home-spray-1 {
  width: 8px;
  height: 8px;

  left: 8%;
  top: 20%;
}


.home-spray-2 {
  width: 5px;
  height: 5px;

  right: 2%;
  top: 10%;
}


.home-spray-3 {
  width: 12px;
  height: 4px;

  right: 9%;
  bottom: 2%;

  border-radius: 100%;

  transform: rotate(-25deg);
}


.home-spray-4 {
  width: 4px;
  height: 4px;

  left: 2%;
  bottom: 5%;
}


/* hero bottom */

.home-hero-bottom {
  display: flex;

  justify-content: space-between;
  align-items: flex-end;

  gap: 40px;

  margin-top: 78px;
}


.home-hero-text {
  max-width: 560px;
}


.home-hero-text p {
  margin: 0 0 8px;

  color: #ffffff;

  font-family: "Bebas Neue", sans-serif;

  font-size: 29px;

  letter-spacing: 0.08em;
}


.home-hero-text span {
  color: #87909c;

  font-size: 14px;

  line-height: 1.7;
}


/* hero button */

.home-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;

  padding: 17px 22px;

  background: #168cff;

  color: #ffffff;

  text-decoration: none;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.14em;

  text-transform: uppercase;

  box-shadow:
    0 0 30px rgba(0, 128, 255, 0.24);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}


.home-hero-link strong {
  font-size: 20px;
  line-height: 1;
}


.home-hero-link:hover {
  transform: translateY(-4px);

  background: #36a5ff;

  box-shadow:
    0 12px 35px rgba(0, 128, 255, 0.38);
}


/* scroll */

.home-hero-scroll {
  position: absolute;

  right: 34px;
  bottom: 42px;

  z-index: 3;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}


.home-hero-scroll span {
  color: rgba(255,255,255,0.38);

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.22em;

  writing-mode: vertical-rl;
}


.home-hero-scroll i {
  display: block;

  width: 1px;
  height: 48px;

  background:
    linear-gradient(
      to bottom,
      #168cff,
      transparent
    );
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.home-section-label {
  display: block;

  margin-bottom: 22px;

  color: #168cff;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.25em;

  text-transform: uppercase;
}


.home-section-heading {
  margin-bottom: 48px;
}


.home-section-heading h2 {
  margin: 0;

  font-family: "Bebas Neue", sans-serif;

  font-size: clamp(
    70px,
    9vw,
    135px
  );

  line-height: 0.8;

  letter-spacing: -0.01em;
}


.home-section-heading h2 span {
  color: #168cff;

  text-shadow:
    0 0 25px rgba(0, 130, 255, 0.35);
}


/* =========================================================
   IMAGES + VIDEOS
========================================================= */

.home-media-section {
  padding: 125px 0 135px;

  background: #050505;
}


.home-media-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 18px;
}


/* media card */

.home-media-card {
  display: block;

  color: #ffffff;

  text-decoration: none;

  min-width: 0;
}


/* visual */

.home-media-visual {
  position: relative;

  height: clamp(
    420px,
    48vw,
    650px
  );

  overflow: hidden;

  background: #07101c;

  border:
    1px solid rgba(255,255,255,0.08);

  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}


.home-media-card:hover .home-media-visual {
  transform: translateY(-5px);

  border-color:
    rgba(22,140,255,0.55);
}


/* image */

.home-media-image img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  filter:
    grayscale(20%)
    contrast(1.05);

  transition:
    transform 0.6s ease,
    filter 0.4s ease;
}


.home-media-image:hover img {
  transform: scale(1.05);

  filter:
    grayscale(0%)
    contrast(1.08);
}


/* dark overlay */

.home-media-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.05) 25%,
      rgba(0,0,0,0.78) 100%
    );

  pointer-events: none;
}


/* image number */

.home-media-number {
  position: absolute;

  top: 22px;
  left: 22px;

  color: rgba(255,255,255,0.72);

  font-family: "Bebas Neue", sans-serif;

  font-size: 34px;

  line-height: 1;
}


/* corner icon */

.home-media-icon {
  position: absolute;

  top: 20px;
  right: 20px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid rgba(255,255,255,0.35);

  background:
    rgba(0,0,0,0.2);

  backdrop-filter: blur(6px);

  color: #ffffff;

  font-size: 17px;

  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}


.home-media-card:hover .home-media-icon {
  background: #168cff;

  border-color: #168cff;
}


/* =========================================================
   VIDEO VISUAL
========================================================= */

.home-media-video .home-media-visual {
  background:
    radial-gradient(
      circle at 50% 42%,
      #07549b 0%,
      #031326 38%,
      #020508 75%
    );
}


.home-video-background {
  position: absolute;

  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}


.home-video-lines {
  position: absolute;

  width: 150%;
  height: 150%;

  background:
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 17px,
      rgba(255,255,255,0.025) 18px,
      transparent 19px
    );

  transform: rotate(-8deg);
}


.home-video-word {
  position: relative;
  z-index: 1;

  color: rgba(255,255,255,0.09);

  font-family: "Bebas Neue", sans-serif;

  font-size: clamp(
    100px,
    17vw,
    250px
  );

  line-height: 0.7;

  transform: rotate(-8deg);
}


.home-video-play {
  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  width: 92px;
  height: 92px;

  display: flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid rgba(255,255,255,0.55);

  border-radius: 50%;

  background:
    rgba(0,0,0,0.24);

  backdrop-filter: blur(8px);

  color: #ffffff;

  font-size: 22px;

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}


.home-media-card:hover .home-video-play {
  transform:
    translate(-50%, -50%)
    scale(1.12);

  background:
    rgba(0,119,255,0.48);
}


/* =========================================================
   MEDIA INFO
========================================================= */

.home-media-info {
  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 20px;

  padding: 18px 3px;

  border-bottom:
    1px solid rgba(255,255,255,0.12);
}


.home-media-info span {
  display: block;

  margin-bottom: 7px;

  color: #168cff;

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.2em;
}


.home-media-info h3 {
  margin: 0;

  color: #ffffff;

  font-family: "Bebas Neue", sans-serif;

  font-size: 32px;

  letter-spacing: 0.04em;
}


.home-media-info > strong {
  color: #168cff;

  font-size: 23px;

  transition:
    transform 0.2s ease;
}


.home-media-card:hover .home-media-info > strong {
  transform: translateX(5px);
}


/* =========================================================
   FIND YOUR SPOT
========================================================= */

.home-spot-section {
  position: relative;

  min-height: 650px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      115deg,
      #06101d 0%,
      #031b35 52%,
      #004c9f 100%
    );
}


.home-spot-background {
  position: absolute;

  inset: 0;

  pointer-events: none;
}


.home-spot-background span {
  position: absolute;

  right: -70px;
  top: 50%;

  transform:
    translateY(-50%)
    rotate(-90deg);

  color: rgba(255,255,255,0.035);

  font-family: "Bebas Neue", sans-serif;

  font-size: 300px;

  line-height: 0.7;
}


.home-spot-background::after {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  right: 8%;
  top: 50%;

  transform: translateY(-50%);

  border:
    1px solid rgba(255,255,255,0.1);

  border-radius: 50%;

  box-shadow:
    0 0 0 70px rgba(255,255,255,0.025),
    0 0 0 140px rgba(255,255,255,0.015);
}


.home-spot-content {
  position: relative;
  z-index: 2;
}


.home-spot-content .home-section-label {
  color: #8bcaff;
}


.home-spot-content h2 {
  margin: 0;

  color: #ffffff;

  font-family: "Bebas Neue", sans-serif;

  font-size: clamp(
    85px,
    12vw,
    180px
  );

  line-height: 0.76;
}


.home-spot-content h2 span {
  color: #8fd2ff;

  text-shadow:
    0 0 35px rgba(0,130,255,0.4);
}


.home-spot-content p {
  max-width: 430px;

  margin: 38px 0 30px;

  color: #b9d3e9;

  font-size: 15px;

  line-height: 1.7;
}


/* blue/white button */

.home-button {
  display: inline-flex;

  align-items: center;

  gap: 25px;

  padding: 17px 23px;

  background: #ffffff;

  color: #03101e;

  text-decoration: none;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.15em;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}


.home-button strong {
  color: #007cff;

  font-size: 19px;
}


.home-button:hover {
  transform: translateY(-4px);

  background: #e7f5ff;
}


/* =========================================================
   SHOP
========================================================= */

.home-shop-section {
  padding: 125px 0 135px;

  background: #030507;
}


.home-shop-heading {
  display: flex;

  justify-content: space-between;
  align-items: flex-end;

  gap: 30px;
}


.home-shop-heading h2 {
  margin: 0;

  font-family: "Bebas Neue", sans-serif;

  font-size: clamp(
    70px,
    9vw,
    130px
  );

  line-height: 0.8;
}


.home-shop-heading h2 span {
  color: #168cff;
}


.home-section-link {
  display: inline-flex;

  align-items: center;

  gap: 13px;

  color: #ffffff;

  text-decoration: none;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.18em;

  transition:
    color 0.2s ease;
}


.home-section-link strong {
  color: #168cff;

  font-size: 18px;

  transition:
    transform 0.2s ease;
}


.home-section-link:hover {
  color: #55b7ff;
}


.home-section-link:hover strong {
  transform: translateX(5px);
}


/* products */

.home-product-slider {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 14px;
}


.home-product-slide {
  display: block;

  min-width: 0;

  color: #ffffff;

  text-decoration: none;
}


.home-product-image {
  position: relative;

  height: 420px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  border:
    1px solid rgba(255,255,255,0.07);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}


.home-product-slide:nth-child(1)
.home-product-image {
  background:
    linear-gradient(
      135deg,
      #02172e,
      #0084ff
    );
}


.home-product-slide:nth-child(2)
.home-product-image {
  background:
    linear-gradient(
      135deg,
      #070b10,
      #102235
    );
}


.home-product-slide:nth-child(3)
.home-product-image {
  background:
    linear-gradient(
      135deg,
      #00376e,
      #1b9dff
    );
}


.home-product-slide:hover .home-product-image {
  transform: translateY(-7px);

  border-color:
    rgba(22,140,255,0.5);
}


.home-product-placeholder {
  font-family: "Permanent Marker", cursive;

  font-size: clamp(
    42px,
    5vw,
    72px
  );

  color: rgba(255,255,255,0.95);

  transform: rotate(-8deg);

  text-shadow:
    5px 5px 0 rgba(0,0,0,0.3);
}


.home-product-image small {
  position: absolute;

  left: 20px;
  bottom: 18px;

  color: rgba(255,255,255,0.72);

  font-size: 8px;

  letter-spacing: 0.2em;
}


.home-product-info {
  display: grid;

  grid-template-columns: 35px 1fr 25px;

  align-items: center;

  gap: 10px;

  padding: 17px 3px;

  border-bottom:
    1px solid rgba(255,255,255,0.12);

  font-size: 9px;

  letter-spacing: 0.13em;
}


.home-product-info strong {
  font-weight: 700;
}


.home-product-info span:last-child {
  color: #168cff;

  font-size: 17px;
}


/* dots */

.home-product-dots {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 8px;

  margin-top: 28px;
}


.home-product-dot {
  width: 7px;
  height: 7px;

  padding: 0;

  border: 0;

  border-radius: 50%;

  background: rgba(255,255,255,0.25);

  cursor: pointer;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}


.home-product-dot.active {
  background: #168cff;

  transform: scale(1.35);

  box-shadow:
    0 0 10px rgba(22,140,255,0.65);
}


/* =========================================================
   FINAL SECTION
========================================================= */

.home-final-section {
  position: relative;

  min-height: 540px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background:
    radial-gradient(
      circle at center,
      #0755a2 0%,
      #031224 42%,
      #020406 75%
    );
}


.home-final-outline {
  position: absolute;

  white-space: nowrap;

  color: transparent;

  font-family: "Bebas Neue", sans-serif;

  font-size: clamp(
    150px,
    28vw,
    400px
  );

  line-height: 0.7;

  -webkit-text-stroke:
    1px rgba(255,255,255,0.08);
}


.home-final-content {
  position: relative;
  z-index: 2;

  text-align: center;
}


.home-final-content > span {
  display: block;

  margin-bottom: 15px;

  color: #8bcaff;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.35em;
}


.home-final-content h2 {
  margin: 0;

  color: #ffffff;

  font-family: "Permanent Marker", cursive;

  font-size: clamp(
    80px,
    13vw,
    180px
  );

  line-height: 0.8;

  transform: rotate(-4deg);

  text-shadow:
    6px 6px 0 #0051ae,
    0 0 30px rgba(0,130,255,0.45);
}


.home-final-content p {
  margin: 35px 0 0;

  color: #ffffff;

  font-family: "Bebas Neue", sans-serif;

  font-size: 22px;

  letter-spacing: 0.35em;
}


/* =========================================================
   HOMEPAGE MOBILE
========================================================= */

@media (max-width: 900px) {

  .home-hero-content {
    padding: 90px 0 70px;
  }


  .home-hero-bottom {
    flex-direction: column;

    align-items: flex-start;

    margin-top: 65px;
  }


  .home-hero-scroll {
    display: none;
  }


  .home-media-grid {
    grid-template-columns: 1fr;
  }


  .home-media-visual {
    height: 480px;
  }


  .home-product-slider {
    grid-template-columns: 1fr;
  }


  .home-product-slide:not(:first-child) {
    display: none;
  }


  .home-product-image {
    height: 390px;
  }


  .home-shop-heading {
    flex-direction: column;

    align-items: flex-start;
  }


  .home-spot-section {
    min-height: 600px;
  }


  .home-spot-background span {
    font-size: 190px;

    right: -50px;
  }


  .home-spot-background::after {
    width: 350px;
    height: 350px;

    right: -80px;
  }

}


@media (max-width: 600px) {

  .home-container,
  .home-hero-content {
    width: 90%;
  }


  .home-hero {
    min-height: calc(100vh - var(--header-height));
  }


  .home-hero-content {
    padding: 75px 0 60px;
  }


  .home-hero-kicker {
    font-size: 8px;

    letter-spacing: 0.18em;
  }


  .home-graffiti-logo {
    font-size: 27vw;
  }


  .home-graffiti-logo::after {
    bottom: -23px;

    font-size: 15px;
  }


  .home-hero-text p {
    font-size: 23px;
  }


  .home-hero-text span {
    font-size: 12px;
  }


  .home-hero-link {
    width: 100%;

    justify-content: space-between;
  }


  .home-media-section,
  .home-shop-section {
    padding: 90px 0;
  }


  .home-section-heading {
    margin-bottom: 32px;
  }


  .home-section-heading h2,
  .home-shop-heading h2 {
    font-size: 23vw;
  }


  .home-media-visual {
    height: 390px;
  }


  .home-media-info h3 {
    font-size: 28px;
  }


  .home-spot-section {
    min-height: 540px;
  }


  .home-spot-content h2 {
    font-size: 24vw;
  }


  .home-spot-content p {
    font-size: 13px;
  }


  .home-button {
    width: 100%;

    justify-content: space-between;
  }


  .home-product-image {
    height: 360px;
  }


  .home-final-section {
    min-height: 430px;
  }


  .home-final-content h2 {
    font-size: 24vw;
  }


  .home-final-content p {
    font-size: 17px;
  }

}
