*{ box-sizing: border-box; }

body{
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero{
  min-height: 100vh;
  background: url('/assets/images/header.svg') center / cover no-repeat;
  color: #fff;
  position: relative;
}

.hero-stage{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-intro{
  text-align: center;
  animation: introUp 0.9s ease forwards;
  animation-delay: 0.6s;
}

.hero-logo{
  margin-bottom:1rem;
  filter:
    drop-shadow(0 0 6px rgba(255,255,255,.6))
    drop-shadow(0 0 14px rgba(255,7,72,.45))
    drop-shadow(0 0 28px rgba(255,7,72,.25));
}


.hero-claim{
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  text-shadow:
    0 0 6px #fff,
    0 0 12px #ff0748;
}

.hero-box{
  margin-top: 2rem;
  max-width: 720px;
  padding: 2rem 2.4rem;
  background: rgba(255,255,255,0.2);
  border-radius: 18px;
  text-align: center;
  color: #111;
  opacity: 0;
  transform: translateY(24px);
  animation: boxIn 0.7s ease forwards;
  animation-delay: 1.3s;
  box-shadow:
    0 12px 40px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.6);
  backdrop-filter: blur(6px);
}

.hero-box p{
  margin: 0 0 1.3rem 0;
  font-size: clamp(1.05rem, 1.2vw, 1.4rem);
  line-height: 1.4;
}

.hero-button{
  display: inline-block;
  padding: 0.75rem 1.4rem;
  border-radius: 10px;
  background: rgb(0,105,0);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background-color .2s ease, transform .2s ease;
}

.hero-button:hover{
  background-color: #8800ff;
  transform: translateY(-1px);
}

@keyframes introUp{
  to{ transform: translateY(-110px); }
}

@keyframes boxIn{
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce){
  *{
    animation: none !important;
    transition: none !important;
  }
}

.hero-imprint{
  position: absolute;
  bottom: 50px;
  right: 16px;


  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  z-index: 10;

  transition: color .15s ease, text-shadow .15s ease;
}

.hero-imprint:link,
.hero-imprint:visited{
  color: rgba(255,255,255,0.75);
}

.hero-imprint:hover,
.hero-imprint:focus,
.hero-imprint:active{
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255,255,255,0.6);
}

