:root {
  --red: #FF0000;
  --footer-text: rgb(69, 70, 89);
  --footer-bg: rgba(255, 0, 0, 0.14);
  --rule: #757575;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  color: #000;
  font-family: 'Bebas Neue', 'Bebas Neue Regular', Impact, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  text-align: center;
  padding: 32px 16px 0;
}

.title {
  margin: 0;
  font-size: clamp(72px, 14vw, 176px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
}

.subtitle {
  margin: 8px 0 24px;
  color: var(--red);
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
}

.divider {
  border: none;
  border-top: 1px solid var(--rule);
  width: min(980px, 92%);
  margin: 0 auto 32px;
}

.content {
  flex: 1;
  width: min(980px, 92%);
  margin: 0 auto;
  padding-bottom: 48px;
}

.content p {
  font-size: 22px;
  line-height: 1.4;
  margin: 0 0 22px;
}

.content a {
  color: inherit;
  text-decoration: underline;
}

.content a:hover { color: var(--red); }

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  margin: 56px 0 32px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sign-wrap {
  position: relative;
  width: 332px;
  max-width: 100%;
}

.hero-left .sign {
  width: 100%;
  height: auto;
  display: block;
}

.cta {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(1deg);
  width: 80%;
  margin: 0;
  font-size: clamp(40px, 6.2vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  color: #000;
  pointer-events: none;
}

.hero-right {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-right .button {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 73px;
  height: 128px;
  cursor: pointer;
}

.hero-right .mask {
  position: absolute;
  left: 57px;
  top: 50%;
  transform: translateY(-50%);
  width: 371px;
  max-width: calc(100% - 57px);
  height: auto;
  animation: glide-in 4s 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) backwards;
}

@keyframes glide-in {
  from { opacity: 0; transform: translate(300px, -50%); }
  to   { opacity: 1; transform: translate(0, -50%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-right .mask { animation: none; }
}

.disclaimer {
  font-style: italic;
  font-size: 16px !important;
  margin-top: 32px !important;
}

.site-footer {
  background: var(--footer-bg);
  text-align: center;
  padding: 20px 16px 24px;
}

.footer-brand {
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--footer-text);
}

.footer-brand a {
  color: var(--footer-text);
  text-decoration: underline;
}

.footer-info {
  margin: 0;
  font-size: 14px;
  color: var(--footer-text);
  line-height: 1.5;
}

.footer-info a {
  color: var(--footer-text);
  text-decoration: none;
}

.footer-info a:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    min-height: 460px;
  }
  .hero-right .mask {
    max-width: calc(100% - 57px);
  }
}
