*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: clamp(15px, 2.5vw, 18px);
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  color: #f8fafc;
  min-height: 100vh;
  background: #0f172a;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem 3rem;
  background-color: #0c1222;
  background-image: url("https://images.unsplash.com/photo-1502602898657-3e91760cbb34?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center 35%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(30, 58, 138, 0.55) 45%,
    rgba(15, 23, 42, 0.92) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 32rem;
  width: 100%;
  text-align: center;
}

.eu-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.eu-badge__flag {
  width: 3rem;
  height: 3rem;
  display: block;
}

.hero__title {
  font-size: clamp(1.85rem, 5vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero__line {
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  opacity: 0.96;
}

.hero__line--accent {
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 700;
  color: #fde68a;
  margin-bottom: 0.65rem;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
}

.hero__details {
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 1.35rem 0 1.85rem;
  color: rgba(248, 250, 252, 0.88);
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  max-width: 22rem;
  padding: 1rem 1.5rem;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  background: linear-gradient(180deg, #fef08a 0%, #facc15 100%);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(250, 204, 21, 0.45), 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(250, 204, 21, 0.5), 0 4px 12px rgba(0, 0, 0, 0.25);
}

.cta:active {
  transform: translateY(0);
}

.cta:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.hero__hint {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(248, 250, 252, 0.55);
  min-height: 1.25em;
}

@media (prefers-reduced-motion: reduce) {
  .cta {
    transition: none;
  }
  .cta:hover {
    transform: none;
  }
}
