:root {
  --bg-start: #fffdf8;
  --bg-end: #f4efe2;
  --text-main: #1d1a26;
  --text-muted: #6b6575;
  --card: rgba(255, 255, 255, 0.95);
  --accent: #6c63ff;
  --border: rgba(23, 15, 42, 0.08);
}

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

body {
  font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: linear-gradient(160deg, var(--bg-start), var(--bg-end));
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.6;
  padding: 3rem clamp(1.5rem, 6vw, 4rem);
}

.sticky-actions {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 999;
}

.sticky-apple {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: transparent;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sticky-apple::before {
  content: "";
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05),
    inset 0 1px 4px rgba(255, 255, 255, 0.08);
}

.sticky-apple:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.sticky-menu {
  position: absolute;
  top: 84px;
  right: 0;
  display: grid;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 1rem;
  padding: 0.75rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  min-width: 160px;
  opacity: 0;
  transform: translateY(-8px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sticky-menu.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.sticky-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.8rem;
  border: none;
  background: rgba(108, 99, 255, 0.08);
  color: #1d1a26;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.sticky-link:hover {
  transform: translateY(-1px);
  background: rgba(108, 99, 255, 0.14);
  box-shadow: 0 8px 16px rgba(108, 99, 255, 0.2);
}

@media (max-width: 640px) {
  .sticky-actions {
    top: 1rem;
    right: 1rem;
  }

  .sticky-apple {
    width: 56px;
    height: 56px;
    border-width: 2px;
  }

  .sticky-apple::before {
    width: 40px;
    height: 40px;
  }

  .sticky-menu {
    top: 68px;
    min-width: 140px;
  }
}

.course-picker {
  max-width: 1600px;
  margin: 0 auto;
}

.picker-hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.picker-hero h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.picker-hero p {
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(240px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 1280px) {
  .path-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

.path-card {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.path-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 75px rgba(15, 23, 42, 0.18);
}

.path-tag {
  align-self: flex-start;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(108, 99, 255, 0.12);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.path-card h2 {
  font-size: 1.4rem;
}

.path-card ul {
  list-style: none;
  margin-top: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--text-muted);
}

.path-card ul li::before {
  content: "•";
  margin-right: 0.5rem;
  color: var(--accent);
}

.path-btn {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #6c63ff, #9f7eff);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 18px 32px rgba(108, 99, 255, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.path-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 38px rgba(108, 99, 255, 0.45);
}
