:root {
  --page-bg: #dcd6ca;
  --ink: #000000;
  --brand-gradient: linear-gradient(
    90deg,
    #f8b325 0%,
    #49f6b5 36.06%,
    #3682fc 77.4%,
    #554aa8 100%
  );
}

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

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.page {
  position: relative;
  min-height: 100vh;
  padding: 55px 48px 48px;
  max-width: 1512px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.top-bar {
  position: fixed;
  width: 100vw;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  background: var(--brand-gradient);
  background-size: 220% 100%;
  animation: top-bar-sweep 8s ease-in-out infinite;
}

.brand {
  height: 90px;
}

.logo {
  width: 457px;
  height: auto;
  display: block;
}

.hero {
  max-width: 720px;
  margin-top: 55px;
  font-size: clamp(16px, 3vw, 24px);
  line-height: 1.26;
}

.hero p {
  margin: 0;
}

.clickable-word {
  cursor: pointer;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: opacity 0.2s ease;
}

.clickable-word:hover {
  opacity: 0.7;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 44px;
  padding: 10px 22px;
  min-width: 152px;
  min-height: 51px;
  background: var(--ink);
  color: #ffffff;
  text-decoration: none;
  font-family: "Departure Mono", "Courier New", monospace;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.05em;
}

@media (max-width: 900px) {
  .page {
    padding: 40px 24px 120px;
  }

  .logo {
    width: 320px;
  }

  .hero {
    margin-top: 0px;
  }

  .cta {
    margin-top: 20px;
    min-width: 100px;
    font-size: 16px;
  }
}

@keyframes top-bar-sweep {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-bar {
    animation: none;
  }
}
