:root {
  --bg-1: #f7f7f7;
  --bg-2: #efefef;
  --text-dark: #06122d;
  --text-body: #1e1e1e;
  --green-1: #42b45a;
  --green-2: #2d9846;
  --green-3: #20843b;
  --green-shadow: rgba(37, 142, 64, 0.28);
  --container-width: 1200px;
  --button-radius: 999px;
}

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

html,
body {
  min-height: 100%;
  
}

body {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--text-body);
  background: radial-gradient(circle at center, #ffffff 0%, #f8f8f8 42%, #f0f0f0 72%, #e7e7e7 100%);
  overflow-x: hidden;
}

.page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
}

.hero {
  width: min(100%, var(--container-width));
  min-height: calc(100svh - 2 * clamp(14px, 2vh, 24px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding-top: 6px;
}

.image-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.image-wrap img {
  width: min(100%, 570px);
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.035));
  animation: floatImage 5.5s ease-in-out infinite;
  user-select: none;
  -webkit-user-drag: none;
  margin-top: 30px;
  border-radius : 25px;
}

h1 {
  max-width: 1200px;
  font-size: clamp(2.3rem, 4vw, 5.3rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 26px;
}

.subtitle {
  max-width: 980px;
  font-size: clamp(1rem, 1.7vw, 1.45rem);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 34px;
  color: #202020;
}

.button-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 286px;
  min-height: 66px;
  padding: 16px 34px;
  border: none;
  border-radius: var(--button-radius);
  background: linear-gradient(180deg, var(--green-1) 0%, var(--green-2) 62%, var(--green-3) 100%);
  box-shadow: 0 14px 28px var(--green-shadow), inset 0 1px 0 rgba(255,255,255,0.28);
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  cursor: pointer;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(37, 142, 64, 0.34), inset 0 1px 0 rgba(255,255,255,0.28);
  filter: brightness(1.02);
}

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

.cta:focus-visible {
  outline: 3px solid rgba(45, 152, 70, 0.22);
  outline-offset: 4px;
}

.helper-text {
  margin-top: 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #606060;
}

.logo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.site-logo {
  width: 260px;
  height: auto;
  display: block;
  object-fit: contain;
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@media (max-width: 1100px) {
  .image-wrap {
    margin-bottom: 10px;
  }

  .image-wrap img {
    width: min(100%, 510px);
  }

  h1 {
    margin-bottom: 20px;
  }

  .subtitle {
    margin-bottom: 28px;
  }
}

@media (max-width: 767px) {
  .page {
    padding: 28px 18px;
  }

  .image-wrap {
    margin-bottom: 6px;
  }

  .image-wrap img {
    width: min(100%, 400px);
  }

  h1 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.02;
    margin-bottom: 16px;
  }

  .subtitle {
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .cta {
    min-width: 225px;
    min-height: 58px;
    padding: 14px 24px;
    font-size: 1rem;
  }
  .logo-wrap {
    margin-bottom: 6px;
  }
  
  .site-logo {
    width: 220px;
  }
}

@media (max-width: 420px) {
  .page {
    padding: 24px 14px;
  }

  .image-wrap img {
    width: min(100%, 350px);
  }

  h1 {
    font-size: 1.72rem;
    letter-spacing: -0.045em;
  }

  .subtitle {
    font-size: 0.96rem;
    margin-bottom: 22px;
  }

  .cta {
    width: 100%;
    max-width: 280px;
    min-width: 0;
  }

  .helper-text {
    font-size: 0.9rem;
  }
  .site-logo {
    width: 205px;
  }
  
  .logo-wrap {
    margin-bottom: 4px;
  }
}
