:root {
  --bg: #07110d;
  --bg-soft: #102019;
  --panel: rgba(10, 18, 14, 0.82);
  --panel-border: rgba(134, 255, 186, 0.18);
  --text: #edf6ef;
  --muted: #a9b8ae;
  --accent: #53d46c;
  --accent-soft: #8ef2c9;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(78, 212, 108, 0.18), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(88, 215, 255, 0.12), transparent 20%),
    linear-gradient(180deg, #07110d 0%, #091611 48%, #050907 100%);
}

.shell {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.hero {
  padding: 24px 4px 20px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
}

h1 {
  margin: 0;
  font-size: clamp(40px, 8vw, 72px);
  line-height: 0.95;
}

.lede {
  width: min(780px, 100%);
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--panel-border);
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
}

.button.primary {
  background: var(--accent);
  color: #041109;
  border-color: transparent;
  font-weight: 700;
}

.panel {
  margin-top: 18px;
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding: 24px 24px 0;
}

.panel-head h2 {
  margin: 0;
}

.panel-head p {
  margin: 0;
  color: var(--muted);
}

.pager {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.week-pill {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: pointer;
}

.week-pill.active {
  color: #041109;
  background: var(--accent-soft);
  border-color: transparent;
  font-weight: 700;
}

.task-list {
  padding: 18px;
}

.day-group {
  margin-bottom: 20px;
}

.day-title {
  margin: 0 0 12px;
  color: var(--accent-soft);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.day-group-list {
  display: grid;
  gap: 14px;
}

.task {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.task summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
}

.task summary::-webkit-details-marker {
  display: none;
}

.task-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.task-title {
  margin: 0;
  font-size: 20px;
}

.task-date {
  color: var(--muted);
  white-space: nowrap;
}

.task-status {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(83, 212, 108, 0.14);
  color: var(--accent-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.task-body {
  padding: 0 22px 22px;
  color: var(--muted);
}

.task-body p {
  margin: 0 0 16px;
  line-height: 1.6;
}

.task-body ul {
  margin: 0 0 18px;
  padding-left: 20px;
}

.task-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.artifact-block {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.artifact-block h4 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artifact-links {
  margin-top: 14px;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.shot {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
}

.shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.shot span {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 720px) {
  .panel-head,
  .task-top {
    flex-direction: column;
  }

  .pager {
    width: 100%;
  }
}
