:root {
  --bg: #ffffff;
  --panel: #8b021a;
  --text: #ffffff;
  --text-dark: #636363;
  --accent: #8b021a;
  --muted: #f6f6f6;
}

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

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

body.custom-body {
  margin: 0;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f8f8f8 55%,
    #dbdbdb 100%
  );
}

.board {
  display: flex;
  align-items: center;
  width: 100%;
  aspect-ratio: 2.5 / 1;
  border-radius: 1.5rem;
  padding: clamp(1.5rem, 4vw, 4rem);
  background: linear-gradient(
    135deg,
    #8b021a 0%,
    #a80d27 55%,
    #8b021a 100%
  );
}

.headline {
  width: 100%;
  margin: 0;
  color: var(--text);
  text-transform: uppercase;
  font-family: Impact, "Arial Narrow Bold", sans-serif;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  visibility: hidden;
}

.line {
  display: block;
  width: 100%;
  overflow: hidden;
}

.line-inner {
  display: flex;
  gap: 0.14em;
  width: 100%;
}

.word {
  display: inline-block;
  white-space: nowrap;
  color: var(--text);
}

.okay-badge {
  text-decoration: none;
}

.okay-logo {
  width: clamp(220px, 30vw, 600px);
  height: auto;
  display: block;
}

.info-section {
  background-color: #ffffff;
  color: var(--text-dark);
}

.footer {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #ffffff;
}

.footer-logo {
  max-width: 120px;
  height: auto;
  opacity: 0.95;
}

.signup-btn {
  background: #ffffff;
  color: #8b021a;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  border: 2px solid #8b021a;
  transition: all 0.25s ease;
}

.signup-btn:hover {
  background: #8b021a;
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  border: 2px solid #8b021a;
  color: #ffffff;
}

.request-btn {
  background: #8b021a;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  border: 2px solid #8b021a;
  transition: all 0.25s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.request-btn:hover {
  background: #636363;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
  border-color: #636363;
}

@media (prefers-reduced-motion: reduce) {
  .word,
  .line-inner,
  .headline {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 767px) {
  .board {
    aspect-ratio: auto;
    min-height: 280px;
  }

  .headline br {
    display: none;
  }

  .headline {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
    line-height: 0.95;
  }

  .okay-logo {
    max-width: 140px;
  }
}

@media (max-width: 576px) {
  .okay-logo {
    max-width: 100%;
    width: 100%;
  }
}

.lead {
  color: #636363;
}

.lead strong {
  color: #8b021a;
  font-weight: 700;
}