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

:root {
  --kinelo-red: #ff4f3b;
  --kinelo-black: #050505;
  --kinelo-white: #ffffff;
}

body {
  font-family: 'Space Grotesk', 'Inter', 'Helvetica Neue', Arial, sans-serif;
  background: radial-gradient(circle at top, #3a120d, #050505 60%);
  color: var(--kinelo-white);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 0 1.5rem;
}

.page {
  width: 100%;
  max-width: 560px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.logo {
  width: 200px;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.tagline {
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 2.25rem;
  background: var(--kinelo-red);
  color: var(--kinelo-black);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 15px 35px rgba(255, 79, 59, 0.35);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(255, 79, 59, 0.45);
}

.footer {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--kinelo-white);
}

@media (max-width: 480px) {
  .page {
    padding: 3rem 0;
    gap: 1.5rem;
  }

  .logo {
    width: 170px;
  }
}

/* Privacy layout */
body.privacy {
  display: block;
  padding: 2.5rem 1.5rem;
}

body.privacy .privacy-container {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

body.privacy h1 {
  font-size: clamp(2.2rem, 6vw, 3rem);
  color: var(--kinelo-white);
  margin-bottom: 0.5rem;
}

body.privacy .last-updated {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

body.privacy h2,
body.privacy h3 {
  color: var(--kinelo-white);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

body.privacy ul {
  padding-left: 1.5rem;
  list-style: disc;
}

body.privacy a {
  color: var(--kinelo-red);
  text-decoration: underline;
}

body.privacy a:hover,
body.privacy a:focus-visible {
  text-decoration: none;
}
