* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "roc-grotesk-wide", sans-serif;
  color: #000;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

.gradient-layer {
  position: fixed;
  inset: -20%;
  z-index: -2;

  background:
  radial-gradient(circle at 20% 20%, rgba(255,255,255,.3), transparent 10%),
  linear-gradient(135deg, #b2fcc6 0%, #7c52db 100%);

  animation: 
  gradientWobble 1s ease-in-out infinite alternate;
}

.image-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("../img/bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: normal;
  animation: imageDistort 10s ease-in-out infinite alternate;
}


@keyframes gradientWobble {
  0% {
    transform: scale(1.1) translate(-2%, -2%);
    background-position: 0% 50%;
  }

  50% {
    transform: scale(1.2) translate(2%, 1%);
    background-position: 100% 50%;
  }

  100% {
    transform: scale(1.15) translate(-1%, 3%);
    background-position: 30% 80%;
  }
}

@keyframes imageDistort {
  0% {
    transform: scale(1.05) skew(0deg, 0deg);
  }

  50% {
    transform: scale(1.12) skew(2deg, -3deg);
  }

  100% {
    transform: scale(1.08) skew(-3deg, 2deg);
  }
}

.ticker {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #000;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  width: max-content;
  animation: ticker 50s linear infinite;
}

.ticker span {
  padding: 0.75rem 0;
  padding-right: 0.5rem;
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-family: "roc-grotesk-extrawide", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}


@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

h1{ 
 font-weight: 600; 
 font-size: clamp(20px, 3vw, 40px); 
 margin: 0 0 2.5rem 0; 
 color: color(display-p3 0.844 0.965 0.878);

}


.page {
  min-height: calc(100vh - 150px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem 3rem;
  text-align: center;
}

.main-logo {
  width: min(80vh, 100vw);
  margin-bottom: 3rem;

}

.content {
  max-width: 720px;
  font-size: clamp(1.1rem, 1.6vw, 1.6rem);
  line-height: 1.35;
  font-weight: 400;
}

.content p {
  margin: 0 0 1.5rem;
}

.button {
  display: inline-block;
  margin-top: 3rem;
  padding: 1.3rem 2.5rem;
  border: 1px solid #000;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: scale(1.05);
  background: transparent;
  color: #000;
}

.content ul {
  display: inline-block;
  text-align: left;
  margin: 1rem auto;
}

.accordion summary {
  cursor: pointer;
  list-style: none;

  display: flex;
  align-items: center;
  gap: 0.5rem;

  padding: 1rem 0;
}

.accordion summary h1 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1.1;
  flex: 1;
}

.accordion summary::before {
  content: "+";
  flex-shrink: 0;
  font-size: 2rem;
  line-height: 1;
}

.accordion details[open] summary::before {
  content: "–";
}

.accordion summary::after {
  display: none;
}

.summary {
  text-align: center;
  color: #fff;
}

.accordion summary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .75rem;
}

.accordion-icon {
  flex-shrink: 0;
  font-size: 2rem;
  font-weight: 900;
}

.accordion summary h1 {
  margin: 0;
  text-align: left;
}

.mail-link {
  color: inherit;
  text-decoration: none;
}

.mail-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  padding: 2rem;
  background: #fff;
  align-self: start;
}

.footer-logos{
  display: contents;
}

.footer-logos img {
  max-width: 100%;
  object-fit: contain;
}

.footer2 a {
text-decoration: none;
font-weight: 600;
color: #000;
}

.footer2 a:hover {
  text-decoration: underline;
}

@media (max-width: 500px) {
  .footer {
    grid-template-columns: 2fr;
    text-align: center;
  }

  .footer-logos img {
    max-width: 600px;
  }
}



