* {
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
}

body {
  background-image: radial-gradient(circle, #ccc 1px, transparent 1px);
  background-size: 20px 20px;
  background-color: #fdfdfd;
  padding: 4rem;
}

#status {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.return {
  color: #334eac;
  text-decoration: none;
}

.return:hover {
  text-decoration: underline;
}

#available {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  padding: 6px 16px;
  border-radius: 100px;

  font-size: 14px;
  font-weight: 500;
  margin: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08); 
}

/* The Green Dot */
#available::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #62B339;
  border-radius: 50%;
  flex-shrink: 0;
}

#header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40vh;
}

#callout {
  font-size: 4rem;
  line-height: 90%;
}

main {
  width: 80vw;
  margin: 0 auto;
}

h1 {
  font-weight: 500;
  padding: 24px 0 8px 0;
}

h2 {
  font-weight: 500;
  text-transform: uppercase;
  padding-bottom: 6px;
}

#cta-img {
  width: 300px;
}

section {
  margin-top: 50px;
}

#cta {
  padding: 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  background-color: #ddeefe;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
  gap: 3rem;
  margin: 50px 75px;
}

.collab-icon {
  width: 40px;
}

.header {
  display: flex;
  align-items: center;
  gap: 10px;
}

#offerings-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  column-gap: 3rem;
  row-gap: 40px;
}

p {
  line-height: 20px;
}

.stages {
  color: #666;
  text-transform: uppercase;
}

.cta-button {
  display: inline-block;
  padding: 14px 28px;
  margin-top: 24px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  color: #ffffff;
  background-color: #334eac;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background-color: #334eac;
  transform: translateY(-2px);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.cta-button:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.scroll-container {
  overflow: hidden;
  width: 100%;
  padding: 12px 0;
}

.scroll-track {
  display: flex;
  gap: 12px;
  width: max-content; /* Expands track to hold all pills in a single line */
  animation: scroll 15s linear infinite;
}

.scroll-container {
  overflow: hidden;
  width: 100%;
  display: flex;
  white-space: nowrap;
}

.scroll-track {
  display: flex;
  gap: 16px; /* Space between pill items */
  width: max-content;
  animation: infinite-scroll 30s linear infinite;
}

/* Pause scroll on hover */
.scroll-container:hover .scroll-track {
  animation-play-state: paused;
}

@keyframes infinite-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

/* Pill Styling */
.pill-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: #fdfdfd;
  border: 1px solid #ccc;
  border-radius: 9999px;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease;
}

.pill-icon {
  display: inline-flex;
  width: 16px;
}